tangled
alpha
login
or
join now
leaflet.pub
/
leaflet
289
fork
atom
a tool for shared writing and social publishing
289
fork
atom
overview
issues
28
pulls
pipelines
updated width to 720
cozylittle.house
4 months ago
45ceeb38
3d47f030
+4
-4
1 changed file
expand all
collapse all
unified
split
app
globals.css
+4
-4
app/globals.css
···
126
126
@media (min-width: 640px) {
127
127
:root {
128
128
--page-width-unitless: min(
129
129
-
624,
129
129
+
720,
130
130
calc(var(--leaflet-width-unitless) - 128)
131
131
);
132
132
-
--page-width-units: min(624px, calc(100vw - 128px));
132
132
+
--page-width-units: min(720px, calc(100vw - 128px));
133
133
}
134
134
}
135
135
136
136
@media (min-width: 1280px) {
137
137
:root {
138
138
--page-width-unitless: min(
139
139
-
624,
139
139
+
720,
140
140
calc((var(--leaflet-width-unitless) / 2) - 32)
141
141
);
142
142
-
--page-width-units: min(624px, calc((100vw / 2) - 32px));
142
142
+
--page-width-units: min(720px, calc((100vw / 2) - 32px));
143
143
}
144
144
}
145
145