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 18238d6 commit 2f4ac8bCopy full SHA for 2f4ac8b
deploy/tasks.html
@@ -9,7 +9,7 @@
9
<script src="assets/js/tasks.js"></script>
10
</head>
11
<body>
12
- <header>
+ <header class="fixed">
13
<h1>Task Runner</h1>
14
</header>
15
<div class="sidebar">
src/springroll/less/header.less
@@ -19,4 +19,12 @@ header {
19
background-image: -o-linear-gradient(top,#428bca 0,#2d6ca2 100%);
20
background-image: linear-gradient(to bottom,#428bca 0,#2d6ca2 100%);
21
background-repeat: repeat-x;
22
+
23
+ &.fixed {
24
+ position:fixed;
25
+ width:100%;
26
+ top:0;
27
+ left:0;
28
+ z-index:100;
29
+ }
30
}
0 commit comments