bugfix: rounded buttons for folders (#260)

This commit is contained in:
James Read 2024-04-02 23:41:59 +01:00 committed by GitHub
parent f5794e57ee
commit 1b539df2aa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 4 deletions

View File

@ -97,12 +97,12 @@ nav.sidebar {
top: 0; top: 0;
transition: left 0.5s ease; transition: left 0.5s ease;
box-shadow: 0 0 10px 0 #444; box-shadow: 0 0 10px 0 #444;
z-index: -1;
flex-direction: column;
display: flex;
} }
nav.shown { nav.shown {
display: flex;
z-index: -1;
flex-direction: column;
left: 0; left: 0;
} }
@ -245,6 +245,10 @@ input[type="submit"]
transition: background-color 1s ease, color 1s ease; transition: background-color 1s ease, color 1s ease;
} }
fieldset button {
border-radius: .7em;
}
/* Action Buttons */ /* Action Buttons */
action-button { action-button {
display: flex; display: flex;
@ -255,7 +259,6 @@ action-button button {
flex-grow: 1; flex-grow: 1;
width: 100%; width: 100%;
z-index: 1; z-index: 1;
border-radius: .7em;
} }
span.title { span.title {