markafitzgerald1 / cribbage-trainer

Two-player cribbage discard and play improvement tool.
Mozilla Public License 2.0
1 stars 0 forks source link

Display discard analyses without having to scroll in mobile landscape mode #2

Closed markafitzgerald1 closed 11 months ago

markafitzgerald1 commented 1 year ago

Because the analyses always display below the cards at present the analyses are off-screen and require scrolling in mobile landscape mode.

markafitzgerald1 commented 1 year ago

May need to make the size of 'vw' units fonts consistent with non-'vw' font of each calculation to provide horizontal space in which the analyses can be displayed in landscape mode.

TODOs

markafitzgerald1 commented 11 months ago

@media queries can be used to make the cards be less than full viewport width in landscape mode. e.g.:

@media screen and (orientation: landscape) {
  div {
    width: 50%;
  }
}

TODO

markafitzgerald1 commented 11 months ago

Sketches done. Key is to move the analysis to the right of the sort controls and hand. Title can span both - or not. To do this will need to wrap the sort+analysis in another DOM element to style it to the left.

markafitzgerald1 commented 11 months ago

Resolved in 6a2fa4a0fbd87cc98a2fef27144515038926f479 and 84449dcb5d1b018b851c144c648b7203c1cbd4e9.