Revert changes based on @Minasokoni's suggestion

This commit is contained in:
Owen Conti
2017-07-17 21:09:25 -06:00
parent 54b867a9bc
commit 0622bd7179
4 changed files with 42 additions and 23 deletions

View File

@@ -8,6 +8,24 @@
<link rel="stylesheet" type="text/css" href="./swagger-ui.css" >
<link rel="icon" type="image/png" href="./favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="./favicon-16x16.png" sizes="16x16" />
<style>
html
{
box-sizing: border-box;
overflow: -moz-scrollbars-vertical;
overflow-y: scroll;
}
*,
*:before,
*:after
{
box-sizing: inherit;
}
body {
margin:0;
background: #fafafa;
}
</style>
</head>
<body>

18
dist/index.html vendored
View File

@@ -8,6 +8,24 @@
<link rel="stylesheet" type="text/css" href="./swagger-ui.css" >
<link rel="icon" type="image/png" href="./favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="./favicon-16x16.png" sizes="16x16" />
<style>
html
{
box-sizing: border-box;
overflow: -moz-scrollbars-vertical;
overflow-y: scroll;
}
*,
*:before,
*:after
{
box-sizing: inherit;
}
body {
margin:0;
background: #fafafa;
}
</style>
</head>
<body>

View File

@@ -1,18 +0,0 @@
html
{
box-sizing: border-box;
overflow: -moz-scrollbars-vertical;
overflow-y: scroll;
}
*,
*:before,
*:after
{
box-sizing: inherit;
}
body {
background: #fafafa;
margin:0;
@include text_body()
}

View File

@@ -1,11 +1,10 @@
@import 'mixins';
@import 'variables';
@import 'colors';
@import 'type';
@import 'reset';
.swagger-ui
{
@import 'mixins';
@import 'variables';
@import 'colors';
@import 'type';
@import 'layout';
@import 'buttons';
@import 'form';
@@ -16,4 +15,6 @@
@import 'information';
@import 'authorize';
@import 'errors';
@include text_body();
}