mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-09 17:54:22 +00:00
* Initial attempt at webpack 4 upgrade, still not working. * Remove unused modules, update some more packages. * Wrangle types due to webpack weirdness. * Undefined function * Package updates. * Replace extract text plugin. Re-add unusable code, but comment it out. * Fix uglification * Remove custom uglify, disable concatenateModules * Upgrade and reenable favicons. Get rid of CSS warning. * Fix up tscheck * Add webpack modes to freezer, electron. * Uodate webpack dev middleware
24 lines
406 B
SCSS
24 lines
406 B
SCSS
.ColorDropdown {
|
|
&-item {
|
|
position: relative;
|
|
padding-right: 10px;
|
|
border-left: 2px solid #fff;
|
|
|
|
&-remove {
|
|
position: absolute;
|
|
top: 50%;
|
|
right: 5px;
|
|
width: 15px;
|
|
height: 15px;
|
|
opacity: 0.5;
|
|
cursor: pointer;
|
|
// Z fixes clipping issue
|
|
transform: translateY(-50%) translateZ(0);
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
}
|