Skip to content

Commit

Permalink
fixup! fix: feedback ui post card (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
fpasquet committed Mar 8, 2024
1 parent ed1fb33 commit a115aa9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@eleven-labs/design-system",
"description": "Design System for Eleven Labs",
"version": "0.30.3",
"version": "0.30.4",
"repository": {
"type": "git",
"url": "https://github.com/eleven-labs/design-system.git"
Expand Down
22 changes: 11 additions & 11 deletions src/components/Organisms/Header/Header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,17 @@
font-family: #{map-get-strict($token-variables, 'font-family', 'heading')};
font-weight: #{map-get-strict($token-variables, 'font-weight', 'bold')};
letter-spacing: 0.5px;

@include create-media-queries('md') {
margin: 0 #{map-get-strict($token-variables, 'spacing', 'xs')};
gap: #{map-get-strict($token-variables, 'spacing', 'm')};
font-weight: #{map-get-strict($token-variables, 'font-weight', 'bold')};
}

@include create-media-queries('lg') {
margin: 0;
gap: #{map-get-strict($token-variables, 'spacing', 'xl')};
}
}

&__menu-item {
Expand Down Expand Up @@ -50,17 +61,6 @@
width: 100%;
border-top: 0.5px solid #{map-get-strict($token-variables, 'color', 'secondary-dark')};

@include create-media-queries('md') {
margin: 0 #{map-get-strict($token-variables, 'spacing', 'xs')};
gap: #{map-get-strict($token-variables, 'spacing', 'm')};
font-weight: #{map-get-strict($token-variables, 'font-weight', 'bold')};
}

@include create-media-queries('lg') {
margin: 0;
gap: #{map-get-strict($token-variables, 'spacing', 'xl')};
}

&--is-open {
display: flex;
}
Expand Down

0 comments on commit a115aa9

Please sign in to comment.