uploaderのスタイルを若干更新

This commit is contained in:
yuuki
2024-02-29 11:19:14 +00:00
parent dc61e1e077
commit e0379f5b2f
3 changed files with 9 additions and 9 deletions

View File

@@ -16,12 +16,10 @@
<label for="file_music">音楽ファイル:</label>
<input type="file" name="file_music" accept=".ogg,.mp3,.wav" required><br>
<br>
<button type="button" onclick="uploadFiles()">今すぐ投稿! (30秒ほどかかる場合があります)</button>
</form>
<br>
<button type="button" onclick="uploadFiles()">今すぐ投稿! (30秒ほどかかる場合があります)</button>
<div id="error-view"></div>
</body>
</html>

View File

@@ -1,3 +1,8 @@
body > *:not(:last-child) {
margin-bottom: 3rem;
}
#error-view {
word-break: break-word;
white-space: pre-line;
}