Skip to content

Commit

Permalink
Styles was updated
Browse files Browse the repository at this point in the history
  • Loading branch information
SergijPSO committed Oct 18, 2023
1 parent f338e98 commit a3cb1c5
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 8 deletions.
11 changes: 8 additions & 3 deletions styles/css/styles.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion styles/css/styles.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 9 additions & 4 deletions styles/scss/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
padding: 0;
margin: 0;
text-decoration: none;
box-sizing: border-box;
}

//Variables
Expand Down Expand Up @@ -165,6 +166,7 @@ html {
}

.todo-app {

&__custom-container {
display: block;
position: relative;
Expand Down Expand Up @@ -229,13 +231,16 @@ html {
}

//Meadia styles goes here
@media all and (max-width: 688px) {
@media all and (max-width: 1024px) {
.todo-app {
max-width: unset;
padding: 0 3%;

&__header,
&__container {
padding: 1.875em 1em;
&__container,
&__header {
padding: 1.875em;
}

}
}

Expand Down

0 comments on commit a3cb1c5

Please sign in to comment.