master
dudleycu 3 years ago
parent a90367e9c4
commit d67d55ed5d
  1. 14
      src/style.css

@ -40,6 +40,9 @@ hr {
img { img {
vertical-align: middle; vertical-align: middle;
} }
html {
min-height: -webkit-fill-available;
}
body { body {
background-image: url("https://pbs.twimg.com/media/E8tfm23VUAQTAAu?format=jpg&name=4096x4096"); background-image: url("https://pbs.twimg.com/media/E8tfm23VUAQTAAu?format=jpg&name=4096x4096");
background-color: #484848; background-color: #484848;
@ -53,6 +56,9 @@ body {
font-weight: normal; font-weight: normal;
text-align: center; text-align: center;
text-shadow: -1px -1px 0 rgba(0,0,0,0.66), 1px -1px 0 rgba(0,0,0,0.66), -1px 1px 0 rgba(0,0,0,0.66), 1px 1px 0 rgba(0,0,0,0.66); text-shadow: -1px -1px 0 rgba(0,0,0,0.66), 1px -1px 0 rgba(0,0,0,0.66), -1px 1px 0 rgba(0,0,0,0.66), 1px 1px 0 rgba(0,0,0,0.66);
min-height: 100vh;
/* mobile viewport bug fix */
min-height: -webkit-fill-available;
} }
table { table {
border-spacing: 0; border-spacing: 0;
@ -956,7 +962,7 @@ cursor:pointer !important;
color: white; color: white;
font-size: 14pt; font-size: 14pt;
display: grid; display: grid;
grid-template-columns: repeat(auto-fit,292px); grid-template-columns: repeat(auto-fill,292px);
justify-content: center; justify-content: center;
gap: 10px; gap: 10px;
} }
@ -1083,6 +1089,8 @@ button {
grid-template-columns: minmax(10px, 1fr) minmax(200px, auto) minmax(10px, 1fr); grid-template-columns: minmax(10px, 1fr) minmax(200px, auto) minmax(10px, 1fr);
grid-template-rows: 10px minmax(10px, 1fr) 10px; grid-template-rows: 10px minmax(10px, 1fr) 10px;
min-height: 100vh; min-height: 100vh;
/* mobile viewport bug fix */
min-height: -webkit-fill-available;
} }
.modalOverlaySplash { .modalOverlaySplash {
position: fixed; position: fixed;
@ -1097,6 +1105,8 @@ button {
grid-template-columns: minmax(10px, 1fr) minmax(200px, auto) minmax(10px, 1fr); grid-template-columns: minmax(10px, 1fr) minmax(200px, auto) minmax(10px, 1fr);
grid-template-rows: 10px minmax(10px, 1fr) minmax(10px, auto); grid-template-rows: 10px minmax(10px, 1fr) minmax(10px, auto);
min-height: 100vh; min-height: 100vh;
/* mobile viewport bug fix */
min-height: -webkit-fill-available;
} }
.modalOverlaySplash > footer { .modalOverlaySplash > footer {
grid-column: 1 / span 3; grid-column: 1 / span 3;
@ -1521,7 +1531,7 @@ p.adminNav hr {
.itemDetailsAugmentWrapper { .itemDetailsAugmentWrapper {
margin: 10px 0 0 0; margin: 10px 0 0 0;
display: grid; display: grid;
grid-template-columns: repeat(2,minmax(125px, 1fr)); grid-template-columns: repeat(auto-fit,minmax(125px, 1fr));
gap: 10px 30px; gap: 10px 30px;
} }

Loading…
Cancel
Save