new mobile horiz moves style with no bottom margin

This commit is contained in:
Thibault Duplessis 2019-05-03 07:12:01 +07:00
parent 31de7b992f
commit 9c69cf49e0
3 changed files with 8 additions and 5 deletions

View file

@ -1,7 +1,7 @@
#main-wrap {
--main-max-width: auto;
@include breakpoint($mq-col1) {
--main-max-width: calc(100vh - #{$site-header-outer-height} - #{$col1-player-clock-height * 2} - #{$col1-moves-height} - #{$col1-moves-margin});
--main-max-width: calc(100vh - #{$site-header-outer-height} - #{$col1-player-clock-height * 2} - #{$col1-moves-height});
}
}

View file

@ -99,17 +99,14 @@
overflow: hidden;
.moves {
flex: 0 0 $col1-moves-height;
margin-bottom: $col1-moves-margin;
display: flex;
align-items: stretch;
white-space: nowrap;
overflow-x: scroll;
color: $c-font-page;
@if $theme-light {
background: hsl($c-site-hue, 15%, 82%);
box-shadow: 0 4px 4px c-light($c-bg-page, 74%) inset;
} @else {
background: hsla(0, 0%, 0%, 0.2);
box-shadow: 0 4px 12px #000 inset;
}
&::-webkit-scrollbar {
@ -135,6 +132,13 @@
font-size: 1.1em;
cursor: pointer;
@include transition();
&:hover {
@if $theme-light {
background: hsl($c-site-hue, 20%, 70%);
} @else {
background: $c-bg-zebra;
}
}
&.active {
font-weight: bold;
@if $theme-light {

View file

@ -4,7 +4,6 @@ $mq-col3: $mq-col3-uniboard;
$col1-player-clock-height: 50px;
$col1-moves-height: 2.5em;
$col1-moves-margin: 1vh;
@import 'layout';
@import 'app-layout';