Quellcode durchsuchen

Use h2 instead of h1 tag and decrease padding for thread-locked message

sbkwgh vor 8 Jahren
Ursprung
Commit
9e148f1bde
1 geänderte Dateien mit 3 neuen und 3 gelöschten Zeilen
  1. 3 3
      src/components/routes/Thread.vue

+ 3 - 3
src/components/routes/Thread.vue

@@ -48,7 +48,7 @@
 		</input-editor>
 
 		<div class='locked_thread' v-if='$store.state.thread.locked'>
-			<h1>Thread locked</h1>
+			<h2>Thread locked</h2>
 			You can't post in this thread because it has been locked by an administrator
 		</div>
 
@@ -328,13 +328,13 @@
 	}
 
 	.locked_thread {
-		h1 {
+		h2 {
 			margin-top: 0;
 			margin-bottom: 0.5rem;
 		}
 
 		background-color: #fff;
-		padding: 2rem;
+		padding: 1.5rem;
 		margin-bottom: 1rem;
 		width: 80%;
 		border-radius: 0.25rem;