49 lines
770 B
SCSS
49 lines
770 B
SCSS
|
|
.mt-1{margin-top: 4px}
|
||
|
|
.mt-2{margin-top: 8px}
|
||
|
|
.mt-3{margin-top: 12px}
|
||
|
|
.mt-4{margin-top: 16px}
|
||
|
|
.mt-5{margin-top: 20px}
|
||
|
|
|
||
|
|
.mb-1{margin-bottom: 4px}
|
||
|
|
.mb-2{margin-bottom: 8px}
|
||
|
|
.mb-3{margin-bottom: 12px}
|
||
|
|
.mb-4{margin-bottom: 16px}
|
||
|
|
.mb-5{margin-bottom: 20px}
|
||
|
|
|
||
|
|
.pt-1{padding-top: 4px}
|
||
|
|
.pt-2{padding-top: 8px}
|
||
|
|
.pt-3{padding-top: 12px}
|
||
|
|
.pt-4{padding-top: 16px}
|
||
|
|
.pt-5{padding-top: 20px}
|
||
|
|
|
||
|
|
.pb-1{padding-bottom: 4px}
|
||
|
|
.pb-2{padding-bottom: 8px}
|
||
|
|
.pb-3{padding-bottom: 12px}
|
||
|
|
.pb-4{padding-bottom: 16px}
|
||
|
|
.pb-5{padding-bottom: 20px}
|
||
|
|
|
||
|
|
.gap-1{gap: 4px}
|
||
|
|
.gap-2{gap: 8px}
|
||
|
|
.gap-3{gap: 12px}
|
||
|
|
.gap-4{gap: 16px}
|
||
|
|
.gap-5{gap: 20px}
|
||
|
|
|
||
|
|
.hide{
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.d-block{
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.d-inline-block{
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.is-bold{
|
||
|
|
font-weight: 700;
|
||
|
|
}
|
||
|
|
|
||
|
|
.in-place{
|
||
|
|
padding: 36px;
|
||
|
|
}
|