mirror of https://github.com/ColorlibHQ/AdminLTE
fix index.html
parent
084ab8029e
commit
1a51c3dc9c
16
index.html
16
index.html
|
@ -54,12 +54,13 @@
|
||||||
</a>
|
</a>
|
||||||
<span class="brand-icons mx-2">
|
<span class="brand-icons mx-2">
|
||||||
<a class="sidebar-mini-icon mx-1" data-pushmenu="mini" href="#" role="button"><i class="fas fa-angle-double-left"></i></a>
|
<a class="sidebar-mini-icon mx-1" data-pushmenu="mini" href="#" role="button"><i class="fas fa-angle-double-left"></i></a>
|
||||||
<a class="header-full-icon mx-2" data-pushmenu="header" href="#" role="button"><i class="fas fa-align-right"></i></a>
|
<!-- <a class="header-full-icon mx-2" data-pushmenu="header" href="#" role="button"><i class="fas fa-align-right"></i></a> -->
|
||||||
<a class="sidebar-full-icon mx-2" data-pushmenu="full" href="#" role="button"><i class="fas fa-bars"></i></a>
|
<!-- <a class="sidebar-full-icon mx-2" data-pushmenu="full" href="#" role="button"><i class="fas fa-bars"></i></a> -->
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<!-- Sidebar -->
|
<!-- Sidebar -->
|
||||||
<nav class="sidebar">
|
<div class="sidebar">
|
||||||
|
<nav class="mt-2">
|
||||||
<!-- Sidebar Menu -->
|
<!-- Sidebar Menu -->
|
||||||
<ul class="nav nav-pills nav-sidebar flex-column" data-widget="treeview" role="menu" data-accordion="false">
|
<ul class="nav nav-pills nav-sidebar flex-column" data-widget="treeview" role="menu" data-accordion="false">
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
|
@ -117,6 +118,7 @@
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
</div>
|
||||||
<!-- /.sidebar -->
|
<!-- /.sidebar -->
|
||||||
</aside>
|
</aside>
|
||||||
|
|
||||||
|
@ -203,6 +205,10 @@
|
||||||
<!-- ./col -->
|
<!-- ./col -->
|
||||||
</div>
|
</div>
|
||||||
<!-- /.row -->
|
<!-- /.row -->
|
||||||
|
<!-- Main row -->
|
||||||
|
<div class="row">
|
||||||
|
<!-- Left col -->
|
||||||
|
<section class="col-lg-7">
|
||||||
<button type="button" class="btn btn-primary">Primary</button>
|
<button type="button" class="btn btn-primary">Primary</button>
|
||||||
<button type="button" class="btn btn-secondary">Secondary</button>
|
<button type="button" class="btn btn-secondary">Secondary</button>
|
||||||
<button type="button" class="btn btn-success">Success</button>
|
<button type="button" class="btn btn-success">Success</button>
|
||||||
|
@ -212,7 +218,9 @@
|
||||||
<button type="button" class="btn btn-light">Light</button>
|
<button type="button" class="btn btn-light">Light</button>
|
||||||
<button type="button" class="btn btn-dark">Dark</button>
|
<button type="button" class="btn btn-dark">Dark</button>
|
||||||
<button type="button" class="btn btn-link">Link</button>
|
<button type="button" class="btn btn-link">Link</button>
|
||||||
<!-- /.row -->
|
</section>
|
||||||
|
</div>
|
||||||
|
<!-- /.row (main row) -->
|
||||||
</div><!-- /.container-fluid -->
|
</div><!-- /.container-fluid -->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -2,4 +2,5 @@
|
||||||
grid-area: content-wrapper;
|
grid-area: content-wrapper;
|
||||||
background-color: $main-bg;
|
background-color: $main-bg;
|
||||||
color: $main-color;
|
color: $main-color;
|
||||||
|
padding-bottom: 1rem;
|
||||||
}
|
}
|
||||||
|
|
|
@ -89,6 +89,14 @@ $theme-colors: map-merge((
|
||||||
), $theme-colors);
|
), $theme-colors);
|
||||||
// stylelint-enable
|
// stylelint-enable
|
||||||
|
|
||||||
|
// The contrast ratio to reach against white, to determine if color changes from "light" to "dark". Acceptable values for WCAG 2.0 are 3, 4.5 and 7.
|
||||||
|
// See https://www.w3.org/TR/WCAG20/#visual-audio-contrast-contrast
|
||||||
|
$min-contrast-ratio: 4.5 !default;
|
||||||
|
|
||||||
|
// Customize the light and dark text colors for use in our color contrast function.
|
||||||
|
$color-contrast-dark: $black !default;
|
||||||
|
$color-contrast-light: $white !default;
|
||||||
|
|
||||||
// Options
|
// Options
|
||||||
//
|
//
|
||||||
// Quickly modify global styling by enabling or disabling optional features.
|
// Quickly modify global styling by enabling or disabling optional features.
|
||||||
|
|
|
@ -27,5 +27,5 @@
|
||||||
@import "mixins";
|
@import "mixins";
|
||||||
|
|
||||||
@import "parts/core";
|
@import "parts/core";
|
||||||
@import "small-box";
|
@import "parts/extra-components";
|
||||||
@import "miscellaneous";
|
@import "miscellaneous";
|
||||||
|
|
Loading…
Reference in New Issue