Skip to content

Commit 46f98eb

Browse files
committed
fix(css): bundle all css together
1 parent 8bdc7bf commit 46f98eb

File tree

3 files changed

+30
-30
lines changed

3 files changed

+30
-30
lines changed

example.css

Lines changed: 0 additions & 29 deletions
This file was deleted.

index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
<title>OTP R.R.</title>
66

77
<link rel="stylesheet" href="dist/index.css">
8-
<link rel="stylesheet" href="example.css">
98
</head>
109
<body>
1110
<div id="root"></div>

lib/index.css

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,33 @@
88
@import url(lib/components/map/map.css);
99
@import url(lib/components/form/form.css);
1010
@import url(lib/components/narrative/narrative.css);
11+
12+
.row {
13+
position: fixed;
14+
top: 52px;
15+
bottom: 0px;
16+
left: 0px;
17+
right: 0px;
18+
padding: 0px 15px;
19+
}
20+
21+
.sidebar {
22+
height: 100%;
23+
padding: 10px;
24+
overflow-y: scroll;
25+
}
26+
27+
.map-container {
28+
height: 100%;
29+
margin: 0px;
30+
padding: 0px;
31+
}
32+
33+
button.header, button.step, .intermediate-stops button {
34+
background: inherit;
35+
color: inherit;
36+
border: 0;
37+
text-align: inherit;
38+
text-decoration: none;
39+
width: 100%;
40+
}

0 commit comments

Comments
 (0)