mirror of
https://github.com/thedevs-network/kutt-extension.git
synced 2026-02-03 13:53:23 +00:00
29 lines
366 B
SCSS
29 lines
366 B
SCSS
@use '../styles/variables' as *;
|
|
|
|
.header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 1rem;
|
|
user-select: none;
|
|
}
|
|
|
|
.logo {
|
|
width: 2rem;
|
|
height: 2rem;
|
|
}
|
|
|
|
.actions {
|
|
display: flex;
|
|
}
|
|
|
|
.styledIcon {
|
|
background-color: transparent;
|
|
box-shadow: none;
|
|
color: rgb(187, 187, 187);
|
|
|
|
&:hover {
|
|
opacity: 0.75;
|
|
}
|
|
}
|