demarches-normaliennes/app/assets/stylesheets/helpers.scss

43 lines
475 B
SCSS
Raw Normal View History

@import "constants";
.m-0 {
margin: 0px !important;
}
.mb-1 {
margin-bottom: $default-spacer;
}
2019-03-13 17:37:07 +01:00
.mr-1 {
margin-right: $default-spacer !important;
2019-03-13 17:37:07 +01:00
}
2019-07-25 11:33:29 +02:00
.mb-4 {
margin-bottom: 4 * $default-spacer !important;
2019-07-25 11:33:29 +02:00
}
.ml-1 {
margin-left: $default-spacer;
}
.pl-0 {
padding-left: 0px !important;
}
.p-0 {
padding: 0px !important;
}
.bold {
font-weight: bold;
}
.numbers-delimiter {
display: inline-block;
width: 5px;
}
2021-03-31 11:16:07 +02:00
.text-center {
text-align: center;
}