mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-18 21:02:00 +01:00
0145e8fe99
The migration tool we used didn't take into account our formatting standards so I'm bulk-formatting the SCSS files to bring them back up to our standards. Basically this just changes the tab size for all the files.
26 lines
339 B
SCSS
26 lines
339 B
SCSS
.iconbutton {
|
|
cursor: pointer;
|
|
opacity: 0.7;
|
|
align-items: center;
|
|
|
|
&.bulb {
|
|
color: var(--bulb-color);
|
|
opacity: 1;
|
|
|
|
&:hover i::before {
|
|
content: "\f672";
|
|
position: relative;
|
|
left: -1px;
|
|
}
|
|
}
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
&.disabled {
|
|
cursor: default;
|
|
opacity: 0.45 !important;
|
|
}
|
|
}
|