mirror of
https://github.com/Coffeedon/Cofffee-Assets.git
synced 2024-11-25 15:41:03 +00:00
33ad106a25
Added all custom themes from the collection.
60 lines
No EOL
1.2 KiB
SCSS
60 lines
No EOL
1.2 KiB
SCSS
@charset "UTF-8";
|
|
@import '../theme/mixins';
|
|
|
|
|
|
// Navigation bar radius
|
|
$nav-bar-radius: 8px;
|
|
|
|
|
|
// Search bar radius
|
|
$search-bar-radius: 8px;
|
|
|
|
|
|
// Bar radius settings
|
|
$bar-radius: 0;
|
|
//$bar-radius: 8px;
|
|
|
|
|
|
// Button radius settings
|
|
$button-radius: 8px;
|
|
|
|
|
|
// Card radius settings
|
|
$card-radius: 8px;
|
|
|
|
|
|
// Dialog radius settings
|
|
$dialog-radius: 8px;
|
|
|
|
|
|
// Menu radius settings
|
|
$menu-radius: 8px;
|
|
|
|
|
|
// Navigation drawer item settings
|
|
$nav-drawer-item-radius: 8px; // corner rounded
|
|
//$nav-drawer-item-radius: 32px; // full rounded
|
|
//$nav-drawer-item-radius: 32px 0 0 32px; // left rounded
|
|
|
|
|
|
// Avater cropping settings
|
|
$avater-radius: 50%; // Rounded cropping
|
|
//$avater-radius: 8px // Material v2 square
|
|
|
|
|
|
// Chip settings
|
|
// If you want to use contained-chip, please comment out below.
|
|
.reactions-bar__item {
|
|
background: $outlined-chip-color !important;
|
|
border: 1px solid $border-color !important;
|
|
|
|
&.active { background-color: $outlined-chip-selected-color !important }
|
|
|
|
&:hover { background: $outlined-chip-hover-color !important }
|
|
}
|
|
|
|
|
|
// Button shadow
|
|
// If you want to use material v2 styled non-shadow button, please comment out this section.
|
|
.button,
|
|
.compose-form .compose-form__publish-button-wrapper { @include shadow-2dp } |