peertube-plugin-livechat/assets/styles/elements/_dynamic-table-form.scss
John Livingston 90afdafbd9
Authentication token generation WIP (#98)
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.
2024-06-17 11:43:59 +02:00

41 lines
895 B
SCSS

/*
* SPDX-FileCopyrightText: 2024 Mehdi Benadel <https://mehdibenadel.com>
* SPDX-FileCopyrightText: 2024 John Livingston <https://www.john-livingston.fr/>
*
* SPDX-License-Identifier: AGPL-3.0-only
*/
/* We are disabling stylelint-disable custom-property-pattern so we can use Peertube var without warnings. */
/* stylelint-disable custom-property-pattern */
@use "sass:color";
@use "../variables";
@use "../mixins/buttons";
@use "../mixins/tables";
livechat-dynamic-table-form {
display: block;
margin-bottom: 3rem;
table {
@include tables.data-table;
.livechat-dynamic-table-form-description-header {
font-size: small;
font-weight: lighter;
}
}
.dynamic-table-add-row-cell {
text-align: left;
}
.dynamic-table-add-row {
@include buttons.button-row-add;
}
.dynamic-table-remove-row {
@include buttons.button-row-remove;
}
}