Skip to content

Commit

Permalink
Fix .title content alignment (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlgo11 authored Jan 14, 2023
1 parent 2084d19 commit e617758
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions assets/css/table.scss
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
}

.entry {
padding-left: 1em;
padding-left: .5em;
border-bottom: var(--table-border);
display: grid;
line-height: 53px;
Expand Down Expand Up @@ -58,17 +58,26 @@
overflow: clip;
}

.title {
display: grid;
grid-auto-flow: column;
justify-content: space-between;
:last-child {
padding-right: .5em;
}
}

.name {
grid-area: 1 / 1 / 2 / 2;
line-height: 4.4rem;
padding: 0 .5em !important;
padding: 0 ;
}

.note {
float: right;
margin-right: 1em;
font-size: 1.4em;
color: #db2828;
justify-self: end;
}

.docs {
Expand Down

0 comments on commit e617758

Please sign in to comment.