1
0

add border between panes on desktop

This commit is contained in:
Nicola Clark 2024-10-12 12:04:03 -05:00
parent 8caf7ac85a
commit e2917c3f4d
Signed by: nicola
GPG Key ID: 3E1710E7FF08956C
2 changed files with 4 additions and 0 deletions

View File

@ -20,6 +20,7 @@
<style lang="less"> <style lang="less">
div { div {
box-sizing: border-box;
height: 100%; height: 100%;
&.hidden { &.hidden {
@ -27,9 +28,11 @@
} }
@media screen and (min-width: @sizes[lg]) { @media screen and (min-width: @sizes[lg]) {
border-right: 2px solid @color-dark;
width: 50%; width: 50%;
&.preview { &.preview {
border-right: unset !important;
display: unset !important; display: unset !important;
} }
} }

View File

@ -18,6 +18,7 @@
ul { ul {
@border: 2px solid @color-dark; @border: 2px solid @color-dark;
border-bottom: @border; border-bottom: @border;
box-sizing: border-box;
list-style-type: none; list-style-type: none;
margin: 0; margin: 0;
padding: 0; padding: 0;