Skip to content

Commit

Permalink
feat(ui): reduce the slider on the editor
Browse files Browse the repository at this point in the history
close #1647
  • Loading branch information
tchiotludo committed Aug 24, 2023
1 parent 72d8c0c commit c3ca717
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions ui/src/components/inputs/EditorView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -886,12 +886,16 @@
}
.slider {
flex: 0 0 calc(1rem / 3);
border-radius: 0.25rem;
flex: 0 0 calc(1rem / 7);
border-radius: 0.15rem;
margin: 0 0.25rem;
background-color: var(--bs-secondary);
background-color: var(--bs-border-color);
border: none;
cursor: col-resize;
user-select: none; /* disable selection */
&:hover {
background-color: var(--bs-secondary);
}
}
</style>

0 comments on commit c3ca717

Please sign in to comment.