25 lines
570 B
SCSS
25 lines
570 B
SCSS
.toolbar-item-container {
|
|
position: relative;
|
|
|
|
&-icon {
|
|
padding: 8px;
|
|
cursor: pointer;
|
|
-webkit-tap-highlight-color: transparent;
|
|
}
|
|
|
|
&-dialog {
|
|
z-index: 5;
|
|
position: absolute;
|
|
background: #fff;
|
|
box-shadow: 0 2px 4px -3px rgba(32, 77, 141, 0.03), 0 6px 10px 1px rgba(32, 77, 141, 0.06), 0 3px 14px 2px rgba(32, 77, 141, 0.05);
|
|
width: fit-content;
|
|
height: fit-content;
|
|
bottom: 35px;
|
|
}
|
|
|
|
&-dialog-dark {
|
|
background: #22262E;
|
|
box-shadow: 0 8px 40px 0 rgba(23, 25, 31, 0.6), 0 4px 12px 0 rgba(23, 25, 31, 0.8);
|
|
}
|
|
}
|