Skip to content

Commit

Permalink
refactor(default-spacing): format codes
Browse files Browse the repository at this point in the history
  • Loading branch information
vandangnhathung committed Nov 28, 2023
1 parent 04bea31 commit ece68c2
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions css/spacing.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,23 @@
*/
/* 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;
}

/**
Expand All @@ -30,25 +30,25 @@
* custom 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);
}

:root {
--spacing-x-0: 0;
--spacing-x-0:0;
}

0 comments on commit ece68c2

Please sign in to comment.