fix: project list 1st row show thin gray line (#5339)

Co-authored-by: Florian Forster <florian@zitadel.com>
Co-authored-by: Max Peintner <max@caos.ch>
This commit is contained in:
Miguel Cabrerizo 2023-03-23 13:19:24 +01:00 committed by GitHub
parent fca6dd9613
commit b0ae24ccca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,7 +17,8 @@
display: flex;
background-color: $card-background-color;
transition: background-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
border: 1px solid $border-color;
border-top: 1px solid $border-color;
border-bottom: 1px solid $border-color;
box-sizing: border-box;
border-radius: 0.5rem;
outline: none;
@ -33,6 +34,22 @@
justify-content: center;
}
button:only-of-type {
border-left: 1px solid $border-color;
border-right: 1px solid $border-color;
border-radius: 0.5rem;
}
button:first-of-type {
border-left: 1px solid $border-color;
border-radius: 0.5rem;
}
button:last-of-type {
border-right: 1px solid $border-color;
border-radius: 0.5rem;
}
[hoveractions] {
display: none;
}