mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-05-01 23:56:41 +07:00
Исправил цвета в альтернативной теме
This commit is contained in:
parent
b36dcca0df
commit
1745cc636d
8 changed files with 442 additions and 9 deletions
src/components/menu/VerticalMenu
|
@ -19,9 +19,12 @@ function VerticalMenu({
|
|||
...props
|
||||
}: PropsWithChildren<VerticalMenuProps>) {
|
||||
return (
|
||||
<Card {...props} className={classNames(styles.menu, styles[appearance], props.className)}>
|
||||
<div
|
||||
{...props}
|
||||
className={classNames(styles.menu, styles[appearance], props.className)}
|
||||
>
|
||||
{children}
|
||||
</Card>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
@import 'src/styles/mixins';
|
||||
|
||||
.menu {
|
||||
background: $content_bg_backdrop;
|
||||
border-radius: $radius;
|
||||
padding: 0 !important;
|
||||
display: flex;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue