mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-14 20:17:14 +01:00
37 lines
412 B
CSS
37 lines
412 B
CSS
/*
|
|
* SPDX-FileCopyrightText: 2023 Andreas Palm
|
|
*
|
|
* SPDX-License-Identifier: LicenseRef-EGPL-3.1
|
|
*/
|
|
|
|
.vueAction {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.flex {
|
|
display: flex;
|
|
}
|
|
|
|
.grid {
|
|
display: grid;
|
|
}
|
|
|
|
.flex-align-center {
|
|
align-items: center;
|
|
}
|
|
|
|
.justify-self-start {
|
|
justify-self: start;
|
|
}
|
|
|
|
.gap-1 {
|
|
gap: 0.25rem;
|
|
}
|
|
|
|
.grid label {
|
|
padding-top: 5px;
|
|
}
|
|
|
|
.grid input[type=text] {
|
|
width: 100%;
|
|
} |