summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2023-06-01 10:44:09 +0000
committerAlyssa Ross <hi@alyssa.is>2023-06-01 10:53:53 +0000
commit047d1b726555af0cb1b327f81e9893fc5e9eaab0 (patch)
tree5540d66a5522bf9d0acd90d069f9f8bb65b0ef51
parentd0d7906e72b9c5fac792c56eae89a62b349164ba (diff)
downloadspectrum-047d1b726555af0cb1b327f81e9893fc5e9eaab0.tar
spectrum-047d1b726555af0cb1b327f81e9893fc5e9eaab0.tar.gz
spectrum-047d1b726555af0cb1b327f81e9893fc5e9eaab0.tar.bz2
spectrum-047d1b726555af0cb1b327f81e9893fc5e9eaab0.tar.lz
spectrum-047d1b726555af0cb1b327f81e9893fc5e9eaab0.tar.xz
spectrum-047d1b726555af0cb1b327f81e9893fc5e9eaab0.tar.zst
spectrum-047d1b726555af0cb1b327f81e9893fc5e9eaab0.zip
Fix mixed indentation
Signed-off-by: Alyssa Ross <hi@alyssa.is>
-rw-r--r--Documentation/_sass/custom/custom.scss30
-rwxr-xr-xscripts/make-erofs.sh2
2 files changed, 16 insertions, 16 deletions
diff --git a/Documentation/_sass/custom/custom.scss b/Documentation/_sass/custom/custom.scss
index eb50c81..fd5a676 100644
--- a/Documentation/_sass/custom/custom.scss
+++ b/Documentation/_sass/custom/custom.scss
@@ -2,21 +2,21 @@
 // SPDX-License-Identifier: MIT
 
 .main-content {
-    // Just the Docs puts titles next to definitions, rather than on
-    // the line before.  This makes the definitions too horizontally
-    // compressed.
-    dl {
-	display: block;
-    }
-    dt {
-	text-align: left;
-	font-weight: bold;
+	// Just the Docs puts titles next to definitions, rather than on
+	// the line before.  This makes the definitions too horizontally
+	// compressed.
+	dl {
+		display: block;
+	}
+	dt {
+		text-align: left;
+		font-weight: bold;
 
-	&::after {
-	    content: none;
+		&::after {
+			content: none;
+		}
+	}
+	dd {
+		margin-left: 2ch;
 	}
-    }
-    dd {
-	margin-left: 2ch;
-    }
 }
diff --git a/scripts/make-erofs.sh b/scripts/make-erofs.sh
index d671bbe..2a8f745 100755
--- a/scripts/make-erofs.sh
+++ b/scripts/make-erofs.sh
@@ -18,7 +18,7 @@ while [ $# -gt $opt_count ]; do
 	arg1="$1"
 	shift
 
-        if [ -z "${img-}" ]; then
+	if [ -z "${img-}" ]; then
 		set -- "$@" "$arg1"
 		opt_count=$((opt_count + 1))