Skip to content

Commit fea2942

Browse files
authored
fix: feeback ui alignment (#74)
1 parent a115aa9 commit fea2942

File tree

7 files changed

+6
-5
lines changed

7 files changed

+6
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@eleven-labs/design-system",
33
"description": "Design System for Eleven Labs",
4-
"version": "0.30.4",
4+
"version": "0.30.5",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/eleven-labs/design-system.git"

public/imgs/default-cover.jpg

914 KB
Loading

src/components/Molecules/Cards/NewsletterCard/webmecanik.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060

6161
input[type="checkbox"] {
6262
appearance: none;
63-
margin: 0;
63+
margin: calc(0.15em * 2) 0 0;
6464
font: inherit;
6565
color: currentcolor;
6666
width: 1.15em;

src/components/Molecules/Cards/PostCard/PostCard.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Overview.args = {
2121
slug: 'slug',
2222
cover: {
2323
img: {
24-
src: 'https://i.ibb.co/gPtFC17/pexels-matheus-bertelli-1830252.jpg',
24+
src: '/imgs/default-cover.jpg',
2525
alt: 'cover',
2626
},
2727
},

src/components/Organisms/Footer/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export const Footer: React.FC<FooterProps> = ({
4141
<Flex
4242
flexDirection={{ xs: 'column', md: 'row' }}
4343
justifyContent="center"
44-
alignItems="center"
44+
alignItems="end"
4545
py="m"
4646
bg="primary-very-dark"
4747
className="footer__intro"

src/styles/utilities/_container.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
@use '@/styles/abstracts' as *;
33

44
.container-content {
5+
width: calc(100vw - #{map-get-strict($token-variables, 'spacing', 's')} * 2);
56
margin-left: #{map-get-strict($token-variables, 'spacing', 's')};
67
margin-right: #{map-get-strict($token-variables, 'spacing', 's')};
78

src/templates/LayoutContentWithSidebar/LayoutContentWithSidebar.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
.layout-content-with-sidebar {
44
@include create-media-queries('md') {
55
&__content {
6-
width: 70%;
6+
width: calc(70% - #{map-get-strict($token-variables, 'spacing', 'xl')});
77
}
88

99
&__sidebar {

0 commit comments

Comments
 (0)