1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/ui/app/css/itcss/tools/utilities.scss
Brad Decker a04ec49a57
remove unnecessary files and scss (#9253)
this moves very little code around, to enable deleting files that are
no longer used or necessary. There are a few more things to move and
delete that will be handled in a seperate PR after this one.
2020-08-19 16:02:42 -05:00

44 lines
547 B
SCSS

/*
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: $red;
}