You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
547 B
44 lines
547 B
7 years ago
|
/*
|
||
|
Utility Classes
|
||
|
*/
|
||
7 years ago
|
|
||
|
/* lib */
|
||
|
.flex-column {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
.flex-row {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
}
|
||
|
|
||
|
.pointer {
|
||
|
cursor: pointer;
|
||
|
}
|
||
7 years ago
|
|
||
7 years ago
|
.cursor-pointer {
|
||
|
cursor: pointer;
|
||
|
transform-origin: center center;
|
||
|
transition: transform 50ms ease-in-out;
|
||
|
}
|
||
7 years ago
|
|
||
7 years ago
|
.cursor-pointer:hover {
|
||
5 years ago
|
transform: scale(1.05);
|
||
7 years ago
|
}
|
||
7 years ago
|
|
||
7 years ago
|
.cursor-pointer:active {
|
||
4 years ago
|
transform: scale(0.97);
|
||
7 years ago
|
}
|
||
|
|
||
|
.drop-menu-item {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.critical-error {
|
||
|
text-align: center;
|
||
|
margin-top: 20px;
|
||
7 years ago
|
color: $red;
|
||
7 years ago
|
}
|