spec(MisskeyIO#884): 送信ボタンをアイコンのみの表示にするしきい値を変更 (MisskeyIO#885)

This commit is contained in:
あわわわとーにゅ 2025-01-13 09:10:28 +09:00 committed by GitHub
parent c88478f31b
commit d4baf040cc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1441,6 +1441,16 @@ defineExpose({
} }
} }
@container (max-width: 400px) {
.submitInner {
min-width: 20px;
}
.submitButtonText {
display: none;
}
}
@container (max-width: 350px) { @container (max-width: 350px) {
.footer { .footer {
font-size: 0.9em; font-size: 0.9em;
@ -1457,14 +1467,5 @@ defineExpose({
.headerRight { .headerRight {
gap: 0; gap: 0;
} }
.submitInner {
min-width: 20px;
}
.submitButtonText {
display: none;
}
} }
</style> </style>