mirror of
https://github.com/brian8544/turtle-wow.git
synced 2024-12-28 10:24:36 +00:00
40 lines
656 B
PHP
40 lines
656 B
PHP
|
@include('layout.head')
|
||
|
|
||
|
<body>
|
||
|
|
||
|
|
||
|
@include('layout.header')
|
||
|
|
||
|
<div class="section mb-5" id="pages">
|
||
|
<style>
|
||
|
.custom-nav-tabs {
|
||
|
padding: 10px;
|
||
|
}
|
||
|
|
||
|
.custom-nav-link {
|
||
|
background-color: var(--dark-gray);
|
||
|
border-radius: 5px;
|
||
|
margin-right: 10px;
|
||
|
border: 1px solid transparent;
|
||
|
}
|
||
|
|
||
|
.custom-nav-link.active {
|
||
|
color: var(--orange) !important;
|
||
|
border-color: transparent;
|
||
|
}
|
||
|
</style>
|
||
|
|
||
|
@livewire('population-graph')
|
||
|
</div>
|
||
|
|
||
|
|
||
|
@include('layout.footer')
|
||
|
|
||
|
@include('layout.dependency')
|
||
|
|
||
|
@include('layout.script')
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|