Skip to content

Commit f64d4d0

Browse files
committed
Merge branch 'Adorkable-forkable-horizontal-scroll'
2 parents 6d13744 + ae55809 commit f64d4d0

File tree

14 files changed

+1168
-201
lines changed

14 files changed

+1168
-201
lines changed

examples/horizontal/app.css

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
.body {
2+
margin: 0 !important;
3+
padding: 0 !important;
4+
}
5+
6+
.pageContainer {
7+
display: flex;
8+
flex-direction: row;
9+
flex-wrap: nowrap;
10+
11+
margin-top: 100px;
12+
}
13+
14+
.element {
15+
width: 1000px;
16+
min-width: 1000px;
17+
background-color: #ededed;
18+
font-size: 45px;
19+
border-top:1px solid #000;
20+
padding-top:55px;
21+
padding-left:10px;
22+
}
23+
24+
.navbar-fixed-top {
25+
display: fixed;
26+
top: 0;
27+
}
28+
29+
.element.no-padding{
30+
padding-top:0;
31+
}
32+
33+
.active {
34+
color:red !important;
35+
}

0 commit comments

Comments
 (0)