浏览代码

Adjust responsive width of alignwide.

Kjell Reigstad 4 年之前
父节点
当前提交
0fb877d280
共有 1 个文件被更改,包括 13 次插入1 次删除
  1. 13 1
      blank-canvas/variables.css

+ 13 - 1
blank-canvas/variables.css

@@ -1,3 +1,6 @@
+/**
+ * Base Variables
+ */
 :root {
 	/* Globals */
 	/* Font Family */
@@ -7,4 +10,13 @@
 	--global--color-secondary: #007cba;
 	--global--color-secondary-hover: #006ba1;
 	--global--color-tertiary: #FAFAFA;
-}
+}
+
+/**
+ * Repsonsive Variables
+ */
+@media only screen and (min-width: 830px) {
+	:root {
+		--responsive--alignwide-width: min(calc(100vw - 2 * var(--global--spacing-horizontal)), 1000px);
+	}
+}