15 lines
266 B
SCSS
15 lines
266 B
SCSS
|
/*
|
||
|
* SPDX-FileCopyrightText: 2024 John Livingston <https://www.john-livingston.fr/>
|
||
|
*
|
||
|
* SPDX-License-Identifier: AGPL-3.0-only
|
||
|
*/
|
||
|
|
||
|
@use "../variables";
|
||
|
|
||
|
livechat-error {
|
||
|
color: variables.$error-color;
|
||
|
display: block;
|
||
|
padding: 50px;
|
||
|
text-align: center;
|
||
|
}
|