mirror of
https://github.com/inspec/inspec
synced 2024-11-23 13:13:22 +00:00
bugfix: css properties need units
just 0 works without ;)
This commit is contained in:
parent
959509fd70
commit
62fff7d445
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
.tutorial-nav {
|
||||
display: inline-block;
|
||||
position: fixed;
|
||||
top: 10;
|
||||
top: 10px;
|
||||
right: 0;
|
||||
width: 150px;
|
||||
height: 60px;
|
||||
|
@ -24,7 +24,7 @@ img {
|
|||
width: 100px;
|
||||
padding-bottom: 5px;
|
||||
position: fixed;
|
||||
bottom: 10;
|
||||
bottom: 10px;
|
||||
right: 30px;
|
||||
z-index: 100;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue