Skip to content

Commit

Permalink
fix: limit url column to 300px
Browse files Browse the repository at this point in the history
  • Loading branch information
popstas committed Dec 24, 2023
1 parent 505f562 commit 489ee95
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion pages/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -529,14 +529,29 @@ header {
&.align-left { text-align: left; }
&.align-center { text-align: center; }
&.align-right { text-align: right; }

&.accent { font-weight: bold; }
.float-right { float:right; }
}

.col-title {
text-align: right;
}

// first column on mobile
@media (max-width: 768px) {
td:nth-child(2) {
white-space: normal !important;
> div{
max-width: 300px;
}
}
}

.col-url > div{
max-width: 300px;
overflow: hidden;
}

.col-readability_text > div {
max-height: 500px;
overflow: hidden;
Expand Down

0 comments on commit 489ee95

Please sign in to comment.