fix(frontend): ユーザーページのバッジ表示を適切に折り返すように (#10222)
* fix(frontend): ユーザーページのバッジ表示を適切に折り返すように * Update CHANGELOG.md
This commit is contained in:
parent
353b1cc682
commit
8c9c89a137
2 changed files with 5 additions and 2 deletions
|
@ -5,7 +5,7 @@
|
||||||
-
|
-
|
||||||
|
|
||||||
### Bugfixes
|
### Bugfixes
|
||||||
-
|
- ユーザーページのバッジ表示を適切に折り返すように @arrow2nd
|
||||||
|
|
||||||
You should also include the user name that made the change.
|
You should also include the user name that made the change.
|
||||||
-->
|
-->
|
||||||
|
|
|
@ -352,6 +352,9 @@ onUnmounted(() => {
|
||||||
> .roles {
|
> .roles {
|
||||||
padding: 24px 24px 0 154px;
|
padding: 24px 24px 0 154px;
|
||||||
font-size: 0.95em;
|
font-size: 0.95em;
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 8px;
|
||||||
|
|
||||||
> .role {
|
> .role {
|
||||||
border: solid 1px var(--color, var(--divider));
|
border: solid 1px var(--color, var(--divider));
|
||||||
|
@ -493,7 +496,7 @@ onUnmounted(() => {
|
||||||
|
|
||||||
> .roles {
|
> .roles {
|
||||||
padding: 16px 16px 0 16px;
|
padding: 16px 16px 0 16px;
|
||||||
text-align: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
> .description {
|
> .description {
|
||||||
|
|
Loading…
Reference in a new issue