make the create btn slightly larger

This commit is contained in:
Gani Georgiev
2024-10-08 16:22:49 +03:00
parent 4421d1a217
commit ed1dc54f27
31 changed files with 82 additions and 76 deletions
+6 -4
View File
@@ -367,17 +367,19 @@ button {
gap: var(--xsSpacing);
&.no-gap {
gap: 0;
> * {
> .btn {
border-radius: 0;
min-width: 0;
box-shadow: -1px 0px 0px 0px rgba(#fff, 0.1);
}
> *:first-child {
> .btn:not(.btn-expanded, .btn-expanded-lg, .btn-expanded-sm) {
min-width: 0;
}
> .btn:first-child {
border-top-left-radius: var(--btnRadius);
border-bottom-left-radius: var(--btnRadius);
box-shadow: none;
}
> *:last-child {
> .btn:last-child {
border-top-right-radius: var(--btnRadius);
border-bottom-right-radius: var(--btnRadius);
}