fix ReviewDetails CreatePage large tag display issue

Signed-off-by: Arthur Lu <learthurgo@gmail.com>
This commit is contained in:
Arthur Lu 2022-11-21 17:20:12 -08:00
parent 0912ea7956
commit 9f9ac19b71
3 changed files with 91 additions and 90 deletions

View File

@ -16,6 +16,7 @@ class ReviewCard extends HTMLElement {
font-family: Century Gothic;
margin: 0;
padding: 0;
overflow-wrap: anywhere;
}
a {

View File

@ -140,3 +140,8 @@ input[type=text]:focus {
.hidden {
display: none;
}
.tag-container * {
max-width: 100%;
overflow-wrap: anywhere;
}

View File

@ -42,8 +42,3 @@ h1 {
padding-left: 7px;
margin: 10px 10px 10px 10px;
}
.tag-container > .d-tag {
max-width: 100%;
overflow-wrap: anywhere;
}