mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
73b6687c5b
* Add %panel CSS component * Deprecate old menu-panel component * Various smallish tweaks to disclosure-menu * Move all menus in the app chrome to use new DisclosureMenu * Follow up CSS to move all app chrome menus to new components * Don't prevent default any events from anchors * Add a tick to click steps
18 lines
393 B
SCSS
18 lines
393 B
SCSS
%panel {
|
|
--tone-border: var(--tone-gray-300);
|
|
border: var(--decor-border-100);
|
|
border-radius: var(--decor-radius-200);
|
|
box-shadow: var(--decor-elevation-600);
|
|
}
|
|
%panel-separator {
|
|
border-top: var(--decor-border-100);
|
|
}
|
|
%panel {
|
|
color: rgb(var(--tone-gray-900));
|
|
background-color: rgb(var(--tone-gray-000));
|
|
}
|
|
%panel,
|
|
%panel-separator {
|
|
border-color: rgb(var(--tone-border));
|
|
}
|