mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
43 lines
487 B
SCSS
43 lines
487 B
SCSS
/*
|
|
Utility Classes
|
|
*/
|
|
.full-size {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.full-width {
|
|
width: 100%;
|
|
}
|
|
|
|
.full-height {
|
|
height: 100%;
|
|
}
|
|
|
|
.full-flex-height {
|
|
display: flex;
|
|
flex: 1 1 auto;
|
|
flex-direction: column;
|
|
}
|
|
|
|
/*
|
|
Misc
|
|
*/
|
|
|
|
// Move into component-level contextual 'active' state later
|
|
.letter-spacey {
|
|
letter-spacing: 0.1em;
|
|
}
|
|
|
|
.active {
|
|
color: #909090;
|
|
}
|
|
|
|
.check {
|
|
margin-left: 7px;
|
|
color: #F7861C;
|
|
flex: 1 0 auto;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|