Browse Source

Revert changes based on @Minasokoni's suggestion

bubble
Owen Conti 7 years ago
parent
commit
0622bd7179
4 changed files with 42 additions and 23 deletions
  1. +18
    -0
      dev-helpers/index.html
  2. +18
    -0
      dist/index.html
  3. +0
    -18
      src/style/_reset.scss
  4. +6
    -5
      src/style/main.scss

+ 18
- 0
dev-helpers/index.html 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
- 0
dist/index.html 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>


+ 0
- 18
src/style/_reset.scss 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()
}

+ 6
- 5
src/style/main.scss 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();
}

Loading…
Cancel
Save