0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-04-04 11:01:20 -05:00

changes styles for the left sidebar

This commit is contained in:
elhombretecla 2016-02-12 16:26:11 +01:00 committed by Andrey Antukh
parent 35a1e9ceb3
commit 3cae356f93
3 changed files with 12 additions and 4 deletions

View file

@ -5,6 +5,11 @@
position: fixed;
right: 0;
width: 250px;
z-index: 10;
&.settings-bar-left {
left: 0
}
.settings-bar-inside {
align-items: center;

View file

@ -1,15 +1,19 @@
.workspace-canvas {
box-sizing: border-box;
height: calc(100vh - 50px);
margin: 0 250px 0 50px;
margin: 0 250px 0 250px;
overflow: scroll;
width: 100%;
transition: none;
&.no-tool-bar {
&.no-tool-bar-right {
margin-right: 0;
}
&.no-tool-bar-left {
margin-left: 0;
}
.viewport {
&.drawing {
cursor: cell;

View file

@ -42,7 +42,7 @@
[own]
(let [toolboxes (rum/react wb/toolboxes-l)]
(html
[:aside#settings-bar.settings-bar
[:aside#settings-bar.settings-bar.settings-bar-left
[:div.settings-bar-inside
(when (contains? toolboxes :draw)
(draw-toolbox))
@ -56,4 +56,3 @@
{:render left-sidebar-render
:name "aside"
:mixins [rum/reactive mx/static]}))