0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-05 13:58:58 -05:00
penpot/resources/styles/partials/tool-bar.scss

51 lines
664 B
SCSS
Raw Normal View History

2015-06-18 19:35:50 +02:00
.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;
}
}
}
}
}
}