mirror of https://github.com/bra1n/townsquare.git
Merge pull request #144 from nicfreeman1209/main
make reference sheet fit to screen in single col mode
This commit is contained in:
commit
d4e144f0f0
|
@ -1,5 +1,7 @@
|
||||||
# Release Notes
|
# Release Notes
|
||||||
|
|
||||||
|
- tweak reference sheet to better fit screen in single column layout
|
||||||
|
|
||||||
### Version 2.11.0
|
### Version 2.11.0
|
||||||
- new design for character reference sheet
|
- new design for character reference sheet
|
||||||
- automatically switch to grimoire view when joining a session through a link
|
- automatically switch to grimoire view when joining a session through a link
|
||||||
|
|
|
@ -240,6 +240,13 @@ ul {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** trim icon size on maximized one-column sheet **/
|
||||||
|
@media screen and (max-width: 991.98px) {
|
||||||
|
.characters .modal.maximized ul li .icon {
|
||||||
|
width: 5.1vh;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/** hide players when town square is set to "public" **/
|
/** hide players when town square is set to "public" **/
|
||||||
#townsquare.public ~ .characters .modal .player {
|
#townsquare.public ~ .characters .modal .player {
|
||||||
display: none;
|
display: none;
|
||||||
|
|
Loading…
Reference in New Issue