fix: simplify talent rank display in character sheet

This commit is contained in:
Johannes Loher 2022-11-10 03:32:52 +01:00
parent d99b1006ba
commit 1e7492073e
9 changed files with 3 additions and 73 deletions

View file

@ -1,21 +0,0 @@
/*
* SPDX-FileCopyrightText: 2021 Johannes Loher
* SPDX-FileCopyrightText: 2021 Gesina Schwalbe
*
* SPDX-License-Identifier: MIT
*/
.ds4-talent-rank-equation {
display: flex;
gap: 0.5em;
&__value {
&[type="number"] {
background-color: transparent;
border: 0;
height: auto;
padding: 0;
text-align: center;
}
}
}

View file

@ -59,7 +59,7 @@
}
}
&--talent {
grid-template-columns: $row-height 1fr 21ch 3fr 5ch;
grid-template-columns: $row-height 1fr 4ch 3fr 5ch;
:nth-child(9n + 3) {
justify-self: center;
}

View file

@ -39,7 +39,6 @@
@use "components/actor/currency";
@use "components/actor/description";
@use "components/actor/profile";
@use "components/actor/talent_rank_equation";
// item
@use "components/item/item_header";