| summaryrefslogtreecommitdiff | 
diff options
| -rw-r--r-- | src/battlemap/www/style.css | 14 | ||||
| -rw-r--r-- | src/global/www/style.css | 2 | 
2 files changed, 14 insertions, 2 deletions
| diff --git a/src/battlemap/www/style.css b/src/battlemap/www/style.css index 4044e38..251ab0e 100644 --- a/src/battlemap/www/style.css +++ b/src/battlemap/www/style.css @@ -30,6 +30,8 @@     width: inherit;     height: inherit;     word-wrap: break-word; +   display: flex; +   flex-direction: column;  }  .battlemap-footer @@ -150,22 +152,30 @@  /** Footer ********************************************************************/  .battlemap-tabmenu  { -   flex: 1; +   flex-grow: 1;     height: inherit; +   display: flex; +   flex-direction: column; +   flex-wrap: wrap; +   width: inherit;  }  .battlemap-manual-controls  { +   max-height: 30%; +   width: inherit;     flex: initial;     display: flex; -   flex-direction: column; +   flex-direction: row; +   flex-wrap: wrap;  }  /**** Tabmenu *****************************************************************/  .battlemap-tabmenu-selector  {     display: flex;     flex-direction: row; +   flex-wrap: wrap;     justify-content: space-between;  } diff --git a/src/global/www/style.css b/src/global/www/style.css index f0cfb6a..9bffa0b 100644 --- a/src/global/www/style.css +++ b/src/global/www/style.css @@ -1,5 +1,7 @@  html  { +   min-width: 800px; +   min-height: 600px;     height: 100%;  } | 


