Skip to content

Commit

Permalink
Fix keyboard mask checkbox css (#436)
Browse files Browse the repository at this point in the history
* Fix keyboard mask checkbox css

* Align items: flex end
  • Loading branch information
Jack-Byrne authored Sep 9, 2021
1 parent fd0b9f6 commit ac854db
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/css/components/_keyboard.scss
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
color: color(white);
font-family: monospace;
overflow-x: scroll;
flex-shrink: 0;
}

.dark-theme .keyboard .input-text input {
Expand Down Expand Up @@ -86,6 +87,8 @@
.dark-theme .keyboard .mask-option-label{
color: color(white);
margin-left: 5px;
line-height: 1;
margin-bottom: 10px;
}

.light-theme .keyboard .input-text {
Expand All @@ -98,6 +101,8 @@
box-sizing: border-box;
font-family: monospace;
overflow-x: scroll;
flex-shrink: 0;
background-color: color(white);
}

.light-theme .keyboard .input-text input {
Expand All @@ -108,6 +113,7 @@
border: none;
box-sizing: border-box;
display: table;
background-color: color(white);
}

.light-theme .keyboard .input-text .input-autocomplete {
Expand All @@ -121,20 +127,26 @@
align-items: center;
margin-left: -27px;
color: #777777;
background-color: color(white);
}

.light-theme .keyboard .mask-option-label {
margin-left: 5px;
line-height: 1;
margin-bottom: 10px;
}

.keyboard .input-row {
width: 100%;
white-space: nowrap;
display: flex;
align-items: flex-end;
}

.keyboard .mask-checkbox {
position: relative;
right: 100px;
margin-bottom: 10px;
}

.numeric .hg-button {
Expand Down

0 comments on commit ac854db

Please sign in to comment.