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.
43 lines
569 B
43 lines
569 B
/*
|
|
Utility Classes
|
|
*/
|
|
|
|
/* lib */
|
|
.flex-column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.flex-row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.pointer {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.cursor-pointer {
|
|
cursor: pointer;
|
|
transform-origin: center center;
|
|
transition: transform 50ms ease-in-out;
|
|
}
|
|
|
|
.cursor-pointer:hover {
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.cursor-pointer:active {
|
|
transform: scale(0.97);
|
|
}
|
|
|
|
.drop-menu-item {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.critical-error {
|
|
text-align: center;
|
|
margin-top: 20px;
|
|
color: var(--color-error-default);
|
|
}
|
|
|