Skip to content

Commit

Permalink
Is this the end ?
Browse files Browse the repository at this point in the history
  • Loading branch information
GrzegorzLasota committed Dec 4, 2024
1 parent 409e6b9 commit f3a3689
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 9 deletions.
1 change: 0 additions & 1 deletion .stylelintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
/backstop_data/
/dist
**/*.css
15 changes: 9 additions & 6 deletions src/styles/blocks/content.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@
&__page {
margin-bottom: 80px;

@include ipad() {
@include ipad {
margin-bottom: 120px;
}
@include desktop() {

@include desktop {
margin-bottom: 180px;
}
}
Expand All @@ -22,11 +23,12 @@
margin-bottom: 90px;

grid-column: 1/-1;
@include ipad() {

@include ipad {
margin-bottom: 130px;
}

@include desktop() {
@include desktop {
margin-bottom: 180px;
}

Expand Down Expand Up @@ -54,9 +56,10 @@
&__section {
grid-column: 1/-1;
padding-bottom: 40px;

@include grid;

@include ipad() {
@include ipad {
padding-bottom: 48px;
}

Expand Down Expand Up @@ -187,7 +190,7 @@
}

.title-detail {
@include desktop() {
@include desktop {
margin-top: 90px;
}
}
Expand Down
2 changes: 2 additions & 0 deletions src/styles/blocks/header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,13 @@

&__item {
@include flex;

gap: 24px;
}

&__link {
@include flex;

padding: 0;
}
}
Expand Down
1 change: 1 addition & 0 deletions src/styles/blocks/menu.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

grid-template-rows: 100px 1fr;
row-gap: 40px;

@include grid;

&__navi {
Expand Down
4 changes: 2 additions & 2 deletions src/styles/blocks/title.scss
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@
}

&__ipad {
@include ipad() {
@include ipad {
font-size: 48px;
}
}

&__desktop {
@include desktop() {
@include desktop {
font-size: 64px;
}
}
Expand Down

0 comments on commit f3a3689

Please sign in to comment.