mirror of
https://github.com/penpot/penpot.git
synced 2025-01-27 17:09:08 -05:00
50 lines
664 B
SCSS
50 lines
664 B
SCSS
.tool-bar {
|
|
background-color: $color-gray-dark;
|
|
bottom: 0;
|
|
height: 100%;
|
|
position: fixed;
|
|
left: 0;
|
|
width: 50px;
|
|
z-index: 10;
|
|
|
|
.tool-bar-inside {
|
|
padding-top: 70px;
|
|
|
|
.main-tools {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
li {
|
|
cursor: pointer;
|
|
margin-bottom: $big;
|
|
|
|
svg {
|
|
fill: $color-gray-light;
|
|
height: 25px;
|
|
width: 25px;
|
|
}
|
|
|
|
&:hover {
|
|
|
|
svg {
|
|
fill: $color-white;
|
|
}
|
|
|
|
}
|
|
|
|
&.current {
|
|
|
|
svg {
|
|
fill: $color-primary;
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|