ux: minor tweak to grid resize handle color

This commit is contained in:
Torkel Ödegaard 2018-02-10 20:11:11 +01:00
parent e1e0b5f951
commit 6bbd87dd9c

View File

@ -41,8 +41,15 @@
.theme-dark { .theme-dark {
.react-grid-item > .react-resizable-handle::after { .react-grid-item > .react-resizable-handle::after {
border-right: 2px solid rgba(255, 255, 255, 0.4); border-right: 2px solid $gray-4;
border-bottom: 2px solid rgba(255, 255, 255, 0.4); border-bottom: 2px solid $gray-4;
}
}
.theme-light {
.react-grid-item > .react-resizable-handle::after {
border-right: 2px solid $gray-3;
border-bottom: 2px solid $gray-3;
} }
} }