0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-02-17 22:04:19 -05:00

fix(console): get-started progress style (#1343)

This commit is contained in:
Xiao Yijun 2022-07-01 15:19:01 +08:00 committed by GitHub
parent 628ac46a89
commit 67a87bb651
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -50,8 +50,23 @@
}
.dropdownItem {
height: 44px;
height: 42px;
padding: 0 _.unit(5) 0 _.unit(4);
border-top: 1px solid var(--color-hover);
border-bottom: 1px solid transparent;
border-radius: unset;
&:last-child {
// Note: use 7px to avoid display issue with parent border-radius
border-bottom-left-radius: 7px;
border-bottom-right-radius: 7px;
}
&:hover:not(:last-child) {
border-bottom-color: var(--color-hover);
+ .dropdownItem {
border-top-color: transparent;
}
}
}