mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
a04ec49a57
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.
24 lines
349 B
SCSS
24 lines
349 B
SCSS
// Flex
|
|
%row-nowrap {
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
}
|
|
|
|
%col-nowrap {
|
|
display: flex;
|
|
flex-flow: column nowrap;
|
|
}
|
|
|
|
// Background Image Sizing
|
|
%bg-contain {
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
}
|
|
|
|
%ellipsify {
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|