Skip to content

Commit

Permalink
spec(#884): 送信ボタンをアイコンのみの表示にするしきい値を変更 (#885)
Browse files Browse the repository at this point in the history
  • Loading branch information
u1-liquid authored Jan 13, 2025
1 parent c88478f commit d4baf04
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions packages/frontend/src/components/MkPostForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1441,6 +1441,16 @@ defineExpose({
}
}

@container (max-width: 400px) {
.submitInner {
min-width: 20px;
}

.submitButtonText {
display: none;
}
}

@container (max-width: 350px) {
.footer {
font-size: 0.9em;
Expand All @@ -1457,14 +1467,5 @@ defineExpose({
.headerRight {
gap: 0;
}

.submitInner {
min-width: 20px;
}

.submitButtonText {
display: none;
}

}
</style>

0 comments on commit d4baf04

Please sign in to comment.