Hide shortcuts on pickers for mobile (#2508)

pull/2509/head
Lipis 4 years ago committed by GitHub
parent c742225f43
commit 0efa62cf7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,4 +1,4 @@
@import "open-color/open-color.scss";
@import "../css/_variables";
.excalidraw {
.color-picker {
@ -208,6 +208,7 @@
.color-picker-keybinding {
position: absolute;
bottom: 2px;
font-size: 0.7em;
:root[dir="ltr"] & {
right: 2px;
@ -217,7 +218,9 @@
left: 2px;
}
font-size: 0.7em;
@media #{$media-query} {
display: none;
}
}
.color-picker-type-canvasBackground .color-picker-keybinding {

@ -1,4 +1,4 @@
@import "open-color/open-color.scss";
@import "../css/_variables";
.excalidraw {
.picker-container {
@ -98,6 +98,7 @@
.picker-keybinding {
position: absolute;
bottom: 2px;
font-size: 0.7em;
:root[dir="ltr"] & {
right: 2px;
@ -106,8 +107,9 @@
:root[dir="rtl"] & {
left: 2px;
}
font-size: 0.7em;
@media #{$media-query} {
display: none;
}
}
.picker-type-canvasBackground .picker-keybinding {

Loading…
Cancel
Save