peertube-plugin-livechat/assets/styles/elements/_dynamic-table-form.scss

41 lines
895 B
SCSS
Raw Normal View History

2024-06-14 15:31:35 +00:00
/*
* 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";
2024-06-14 15:31:35 +00:00
livechat-dynamic-table-form {
display: block;
margin-bottom: 3rem;
table {
@include tables.data-table;
2024-06-14 15:31:35 +00:00
.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;
2024-06-14 15:31:35 +00:00
}
.dynamic-table-remove-row {
@include buttons.button-row-remove;
2024-06-14 15:31:35 +00:00
}
}