Skip to content

Commit

Permalink
Create main.scss
Browse files Browse the repository at this point in the history
  • Loading branch information
krillin666 authored Sep 3, 2020
1 parent 8a11bd9 commit fb3f3ac
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions src/main.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
.mac-desktop #editor-column {
// To offset colored circles in Mac
padding-top: 35px;
}

.mac-desktop #editor-column:before {
content: "";
display: block;
position: absolute;
top: 0;
width: 100%;
height: 38px;
-webkit-app-region: drag;
}

#editor-title-bar {
display: none;
}

#editor-menu-bar {
display: none;
}

#editor-pane-component-stack {
display: none;
}

#footer-bar {
opacity: 0.08;
transition: opacity 0.25s;
}

#footer-bar:hover {
opacity: 1.0;
}

.section.tags {
flex: none !important;
width: 0px !important;
transition: width 0.25s;
}

.section.tags:hover {
flex: initial;
width: 0px !important;
transition: width 0.25s;
}

.section.notes {
flex: none !important;
width: 0px !important;
transition: width 0.25s;
border: none !important;
}

.section.notes:hover {
flex: initial;
width: 0px !important;
transition: width 0.25s;
}

0 comments on commit fb3f3ac

Please sign in to comment.