mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-10 23:50:12 +00:00
60 lines
679 B
SCSS
60 lines
679 B
SCSS
.clearfix::after {
|
|
clear: both;
|
|
content: '';
|
|
display: table;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.visibility-hidden {
|
|
visibility: hidden;
|
|
}
|
|
|
|
.align-right {
|
|
text-align: right;
|
|
}
|
|
|
|
.color-primary {
|
|
color: $color-primary-500 !important;
|
|
}
|
|
|
|
.remove-scrollbar {
|
|
-ms-overflow-style: none;
|
|
|
|
&::-webkit-scrollbar {
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
}
|
|
|
|
.margin-bottom-1 {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.margin-bottom-2 {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.margin-bottom-3 {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.margin-bottm-4 {
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
@keyframes spin {
|
|
0% {
|
|
transform: rotate(0);
|
|
}
|
|
|
|
50% {
|
|
transform: rotate(360deg);
|
|
}
|
|
|
|
100% {
|
|
transform: rotate(720deg);
|
|
}
|
|
}
|