21 lines
590 B
SCSS
21 lines
590 B
SCSS
@import '~@ucap/ng-ui-material/material';
|
|
|
|
@mixin ucap-chat-room-list-item-02-theme($theme) {
|
|
$is-dark-theme: map-get($theme, is-dark);
|
|
$primary: map-get($theme, primary);
|
|
$accent: map-get($theme, accent);
|
|
$warn: map-get($theme, warn);
|
|
$background: map-get($theme, background);
|
|
$foreground: map-get($theme, foreground);
|
|
|
|
.ucap-chat-room-list-item-02-container {
|
|
border-color: mat-color($foreground, secondary-text);
|
|
}
|
|
}
|
|
|
|
@mixin ucap-chat-room-list-item-02-typography($config) {
|
|
.ucap-chat-room-list-item-01-container {
|
|
font-family: mat-font-family($config);
|
|
}
|
|
}
|