We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 359a709 commit e936ce3Copy full SHA for e936ce3
src/css/unison-share/page/code-page.css
@@ -1,7 +1,13 @@
1
.code-page {
2
/* increase the readable-column-width-medium size to account for extra gutter
3
- * space added by the fold toggle */
4
- --readable-column-width-medium: calc(var(--readable-column-width-medium) + 2rem);
+ * space added by the fold toggle
+ *
5
+ * unfortunately it doesn't look like we can define css variable based off of
6
+ * itself, so we're going its 45rem here because
7
+ --readable-column-width-medium originally is 43 and we're adding 2rem;
8
+ * */
9
+ --readable-column-width-medium_original: 43rem;
10
+ --readable-column-width-medium: calc(var(--readable-column-width-medium_original) + 2rem);
11
}
12
13
.code-page .sidebar .namespace-header {
0 commit comments