mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00

- Added padding to bottom of /setup-guide to accomodate iPhone users with curved screen bottoms - Added screen orientation detection to /player-settings to force select inputs into a single column on mobile devices - Added an X to the cookie notice to indicate it can be closed - Changed "Generate Game" to "Start Game" so it matches the header
17 lines
279 B
CSS
17 lines
279 B
CSS
#cookie-notice{
|
|
display: block;
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
line-height: 40px;
|
|
background-color: #c7cda5;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#cookie-notice #close-button{
|
|
float: right;
|
|
padding-right: 10px;
|
|
}
|