Skip to content
This repository was archived by the owner on Apr 21, 2026. It is now read-only.

Commit 329fe70

Browse files
author
dpatanin
committed
remove border
1 parent 62496ba commit 329fe70

2 files changed

Lines changed: 11 additions & 12 deletions

File tree

src/scss/components/_sidebar.scss

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ span {
7474
//Instead of the line below you could use @include transition($transition-1, $transition-2, $transition-3, $transition-4, $transition-5, $transition-6, $transition-7, $transition-8, $transition-9, $transition-10)
7575
transition: all 0.3s;
7676
&.active {
77-
min-width: 80px;
78-
max-width: 80px;
77+
min-width: 10px;
78+
max-width: 10px;
7979
text-align: center;
8080
.sidebar-header {
8181
h3 {
@@ -138,7 +138,8 @@ span {
138138
}
139139
.sidebar-header {
140140
padding: 20px;
141-
background: $highlight;
141+
background: $highlight;
142+
width: auto;
142143
strong {
143144
display: none;
144145
font-size: 1.8em;

src/templates/scanner.js

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,13 @@ const Scanner = ({ data }) => {
2323
</nav>
2424

2525
<div id="content">
26-
<nav class="navbar navbar-expand-lg navbar-light bg-light">
27-
<div class="container-fluid">
28-
<h1 className="title">{title}</h1>
29-
<div
30-
className="content"
31-
dangerouslySetInnerHTML={{ __html: html }}
32-
/>
33-
</div>
34-
</nav>
26+
<div class="container-fluid">
27+
<h1 className="title">{title}</h1>
28+
<div
29+
className="content"
30+
dangerouslySetInnerHTML={{ __html: html }}
31+
/>
32+
</div>
3533
</div>
3634
</div>
3735
</Layout>

0 commit comments

Comments
 (0)