Merge pull request #3853 from jackmcdade/develop
Removes padding on html/body to kill the scrollbar
This commit is contained in:
commit
3b2f29ec26
|
@ -19,7 +19,7 @@
|
||||||
font-weight: 100;
|
font-weight: 100;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 10px;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.full-height {
|
.full-height {
|
||||||
|
@ -48,6 +48,7 @@
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
font-size: 84px;
|
font-size: 84px;
|
||||||
|
margin-bottom: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.links > a {
|
.links > a {
|
||||||
|
@ -59,10 +60,6 @@
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
||||||
.m-b-md {
|
|
||||||
margin-bottom: 30px;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
@ -75,7 +72,7 @@
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<div class="title m-b-md">
|
<div class="title">
|
||||||
Laravel
|
Laravel
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue