Skip to content

Commit

Permalink
feat(release): Atomic CSS 1.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
phucbm committed Feb 8, 2023
1 parent 565fadb commit f2ed76a
Show file tree
Hide file tree
Showing 6 changed files with 285 additions and 287 deletions.
1 change: 0 additions & 1 deletion css/extra.css
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@

/**
* Clear list style
* We can add the class directly to the ul or to the wrapper that has ul inside
*/
ul.list-style-none,
.list-style-none ul {
Expand Down
20 changes: 10 additions & 10 deletions css/spacing.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,44 +4,44 @@
*/
/* Margin auto */
.m-auto {
margin:auto;
margin:auto;
}

.mt-auto {
margin-top:auto;
margin-top:auto;
}

.mr-auto {
margin-right:auto;
margin-right:auto;
}

.mb-auto {
margin-bottom:auto;
margin-bottom:auto;
}

.ml-auto {
margin-left:auto;
margin-left:auto;
}

/**
* Vertical Spacing
*/
:root {
--spacing-0:0;
--spacing-0:0;
}

.pt0 {
padding-top:var(--spacing-0);
padding-top:var(--spacing-0);
}

.pb0 {
padding-bottom:var(--spacing-0);
padding-bottom:var(--spacing-0);
}

.mt0 {
margin-top:var(--spacing-0);
margin-top:var(--spacing-0);
}

.mb0 {
margin-bottom:var(--spacing-0);
margin-bottom:var(--spacing-0);
}
Loading

0 comments on commit f2ed76a

Please sign in to comment.