90afdafbd9
You can now generate links to join chatrooms with your current user. This can be used to create Docks in OBS for example. This could also be used to generate authentication token to join the chat from 3rd party tools.
23 lines
398 B
SCSS
23 lines
398 B
SCSS
/*
|
|
* SPDX-FileCopyrightText: 2024 John Livingston <https://www.john-livingston.fr/>
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
@use "../mixins/buttons";
|
|
@use "../mixins/tables";
|
|
|
|
livechat-token-list {
|
|
table {
|
|
@include tables.data-table;
|
|
}
|
|
|
|
.livechat-create-token {
|
|
@include buttons.button-row-add;
|
|
}
|
|
|
|
.livechat-revoke-token {
|
|
@include buttons.button-row-remove;
|
|
}
|
|
}
|