mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-31 09:08:30 +01:00
Fix title screen buttons being semi transparent (#4062)
## About The Pull Request `.menu_button` was being affected by the `.container_nav` opacity property because the former is contained in the latter, changes the styling to stop using the opacity property and shift the opacity change to `container_nav`'s `background` property for the same effect. Also deletes the unused skyrat titlescreen config file ## Why It's Good For The Game Fixes #3235 ## Proof Of Testing <details> <summary>Screenshots/Videos</summary>  </details> ## Changelog 🆑 fix: fixed title screen stylesheet making the menu buttons semi transparent /🆑
This commit is contained in:
@@ -111,8 +111,7 @@
|
||||
border: 2px solid white;
|
||||
border-radius: 4px;
|
||||
box-shadow: 2px 2px #333, inset 1px 1px #333;
|
||||
background: linear-gradient(to bottom, rgba(68, 68, 204, 0.9), rgba(0, 0, 102, 0.9));
|
||||
opacity: 75%;
|
||||
background: linear-gradient(to bottom, rgba(68, 68, 204, 0.675), rgba(0, 0, 102, 0.675));
|
||||
padding: 1em;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user