mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-21 18:59:27 +00:00
13 lines
195 B
SCSS
13 lines
195 B
SCSS
// Copyright 2019-2020 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
@mixin light-theme() {
|
|
@content;
|
|
}
|
|
|
|
@mixin dark-theme() {
|
|
:global(.dark-theme) & {
|
|
@content;
|
|
}
|
|
}
|