mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 12:29:06 +01:00
25 lines
372 B
SCSS
25 lines
372 B
SCSS
|
|
||
|
.snap-details-page {
|
||
|
$width-screen-sm-min: 85vw;
|
||
|
$width-screen-md-min: 80vw;
|
||
|
$width-screen-lg-min: 62vw;
|
||
|
|
||
|
@include screen-sm-min {
|
||
|
width: $width-screen-sm-min;
|
||
|
}
|
||
|
|
||
|
@include screen-md-min {
|
||
|
width: $width-screen-md-min;
|
||
|
}
|
||
|
|
||
|
@include screen-lg-min {
|
||
|
width: $width-screen-lg-min;
|
||
|
}
|
||
|
|
||
|
|
||
|
.snap-detail-icon {
|
||
|
width: 16px;
|
||
|
height: 16px;
|
||
|
}
|
||
|
}
|