various small css tweaks

This commit is contained in:
booploops 2022-04-26 16:07:10 -07:00
parent c505b2d9bd
commit c1c4dd8fb4
4 changed files with 14 additions and 6 deletions

View file

@ -311,7 +311,8 @@
.menu-panel-body {
display: flex;
flex-flow: column;
background: #262626;
background: rgb(30 30 30 / 45%);
backdrop-filter : blur(32px) saturate(180%);
position: relative;
min-width: 200px;
box-shadow: var(--ciderShadow-Generic);
@ -322,13 +323,15 @@
.menu-option {
text-align: left;
display: flex;
width: 100%;
padding: 9px 16px;
width: calc(100% - 4px);
padding: 8px 10px;
appearance: none;
border: 0px;
font: inherit;
background: transparent;
color: inherit;
margin: 0 auto;
border-radius: 5px;
&:hover {
background: var(--selected);
@ -367,6 +370,10 @@
.menu-body {
overflow: overlay;
height: 100%;
display: flex;
flex-flow: column;
gap: 4px;
padding: 6px 4px;
}
.menu-footer {