Skip to content

Commit

Permalink
fix: widened rows in seconds column of skills table on character sheet
Browse files Browse the repository at this point in the history
Fixes #1342
  • Loading branch information
elyukai committed Feb 3, 2022
1 parent cad0f26 commit 41ee35b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/App/Views/Sheets/SheetHeader.scss
@@ -1,17 +1,18 @@
.sheet-header {
align-items: flex-end;
flex: none;
height: 32mm;
height: 28mm;
margin-bottom: 4mm;
}

.sheet-title {
flex: 1 1 100%;
height: 12mm;
height: 28mm;
display: flex;
flex-direction: column;
justify-content: center;
justify-content: flex-end;
position: relative;
padding-bottom: 0.5mm;

h1, p {
text-align: center;
Expand All @@ -27,7 +28,6 @@
width: 3cm;
opacity: .2;
left: calc(50% - 1.5cm);
top: -16mm;
}
}

Expand Down
3 changes: 2 additions & 1 deletion src/App/Views/Sheets/SkillsSheet/SkillsSheet.scss
Expand Up @@ -10,6 +10,7 @@
.upper {
display: flex;
width: 100%;
align-items: flex-start;

table {
width: 50%;
Expand Down Expand Up @@ -108,7 +109,7 @@
.languages-list {
display: grid;
grid-template-columns: 1fr 1fr;
grid-auto-rows: auto;
grid-auto-rows: 4.5mm;
list-style: none;
margin: 0;
padding: 0;
Expand Down

0 comments on commit 41ee35b

Please sign in to comment.