mirror of
https://github.com/balena-io/etcher.git
synced 2025-07-23 11:16:39 +00:00
Only apply necessary margins in spacing module
This commit is contained in:
parent
37a69d5e33
commit
a871d19ef7
@ -5851,13 +5851,16 @@ button.close {
|
||||
margin: 15px; }
|
||||
|
||||
.space-vertical-medium {
|
||||
margin: 15px 0; }
|
||||
margin-top: 15px;
|
||||
margin-bottom: 15px; }
|
||||
|
||||
.space-vertical-large {
|
||||
margin: 30px 0; }
|
||||
margin-top: 30px;
|
||||
margin-bottom: 30px; }
|
||||
|
||||
.space-horizontal-large {
|
||||
margin: 0 30px; }
|
||||
margin-left: 30px;
|
||||
margin-right: 30px; }
|
||||
|
||||
.space-bottom-huge {
|
||||
margin-bottom: 45px; }
|
||||
|
@ -24,15 +24,18 @@ $spacing-tiny: 5px;
|
||||
}
|
||||
|
||||
.space-vertical-medium {
|
||||
margin: $spacing-medium 0;
|
||||
margin-top: $spacing-medium;
|
||||
margin-bottom: $spacing-medium;
|
||||
}
|
||||
|
||||
.space-vertical-large {
|
||||
margin: $spacing-large 0;
|
||||
margin-top: $spacing-large;
|
||||
margin-bottom: $spacing-large;
|
||||
}
|
||||
|
||||
.space-horizontal-large {
|
||||
margin: 0 $spacing-large;
|
||||
margin-left: $spacing-large;
|
||||
margin-right: $spacing-large;
|
||||
}
|
||||
|
||||
.space-bottom-huge {
|
||||
|
Loading…
x
Reference in New Issue
Block a user