Skip to content

Commit

Permalink
Remove margin, padding 0 on row and column
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeDoctorDE committed Mar 23, 2024
1 parent 1d820db commit 884bfb9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@linwooddev/style",
"description": "",
"main": "index.js",
"version": "0.3.7",
"version": "0.3.8",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "sass --watch scss/:css/",
Expand Down
12 changes: 8 additions & 4 deletions packages/web/scss/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,12 @@
display: flex;
flex-direction: column;
list-style: none;
margin: 0;
padding: 0;
}

.row {
display: flex;
flex-direction: row;
list-style: none;
margin: 0;
padding: 0;
}

.container {
Expand Down Expand Up @@ -109,6 +105,14 @@
margin-top: auto;
margin-bottom: auto;
}
.mp-auto {
margin: auto;
padding: auto;
}
.mp-none {
margin: 0;
padding: 0;
}

@each $breakpoint, $value in vars.$spacing {
.gap-#{$breakpoint} {
Expand Down

0 comments on commit 884bfb9

Please sign in to comment.