Simplify sidebar style
Avoid element shifting when rendering
This commit is contained in:
parent
7429ef3539
commit
ef0c9ce770
5 changed files with 214 additions and 175 deletions
|
@ -6,11 +6,11 @@
|
||||||
MIT License
|
MIT License
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<div id="nav-wrapper">
|
<div id="sidebar" class="d-flex flex-column align-items-end">
|
||||||
|
|
||||||
<div id="profile-wrapper" class="d-flex flex-column">
|
<div class="profile-wrapper text-center">
|
||||||
<div id="avatar" class="d-flex justify-content-center">
|
<div id="avatar">
|
||||||
<a href="{{ site.baseurl }}/" alt="avatar">
|
<a href="{{ site.baseurl }}/" alt="avatar" class="mx-auto">
|
||||||
{% assign avatar_url = site.avatar %}
|
{% assign avatar_url = site.avatar %}
|
||||||
{% capture start %}{{ site.avatar | slice: 0 }}{% endcapture %}
|
{% capture start %}{{ site.avatar | slice: 0 }}{% endcapture %}
|
||||||
{% if start == '/' %}
|
{% if start == '/' %}
|
||||||
|
@ -20,26 +20,26 @@
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="profile-text mt-3">
|
<div class="site-title mt-3">
|
||||||
<div class="site-title">
|
<a href="{{ '/' | relative_url }}">{{- site.title -}}</a>
|
||||||
<a href="{{ '/' | relative_url }}">{{- site.title -}}</a>
|
|
||||||
</div>
|
|
||||||
<div class="site-subtitle font-italic">{{- site.tagline -}}</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div><!-- #profile-wrapper -->
|
|
||||||
|
|
||||||
<ul class="nav flex-column">
|
<div class="site-subtitle font-italic">{{- site.tagline -}}</div>
|
||||||
|
|
||||||
|
</div><!-- .profile-wrapper -->
|
||||||
|
|
||||||
|
<ul class="w-100">
|
||||||
<!-- home -->
|
<!-- home -->
|
||||||
<li class="nav-item d-flex justify-content-center {% if page.layout == 'home' %}active{% endif %}">
|
<li class="nav-item{% if page.layout == 'home' %}{{ " active" }}{% endif %}">
|
||||||
<a href="{{ '/' | relative_url }}" class="nav-link d-flex justify-content-center align-items-center w-100">
|
<a href="{{ '/' | relative_url }}" class="nav-link">
|
||||||
<i class="fa-fw fas fa-home ml-xl-3 mr-xl-3 unloaded"></i>
|
<i class="fa-fw fas fa-home ml-xl-3 mr-xl-3 unloaded"></i>
|
||||||
<span>{{ "HOME" }}</span>
|
<span>{{ "HOME" }}</span>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<!-- the real tabs -->
|
<!-- the real tabs -->
|
||||||
{% for tab in site.tabs %}
|
{% for tab in site.tabs %}
|
||||||
<li class="nav-item d-flex justify-content-center {% if tab.url == page.url %}active{% endif %}">
|
<li class="nav-item{% if tab.url == page.url %}{{ " active" }}{% endif %}">
|
||||||
<a href="{{ tab.url | relative_url }}" class="nav-link d-flex justify-content-center align-items-center w-100">
|
<a href="{{ tab.url | relative_url }}" class="nav-link">
|
||||||
<i class="fa-fw {{ tab.icon }} ml-xl-3 mr-xl-3 unloaded"></i>
|
<i class="fa-fw {{ tab.icon }} ml-xl-3 mr-xl-3 unloaded"></i>
|
||||||
<span>{{ tab.title | upcase }}</span>
|
<span>{{ tab.title | upcase }}</span>
|
||||||
</a>
|
</a>
|
||||||
|
@ -48,38 +48,44 @@
|
||||||
|
|
||||||
</ul> <!-- ul.nav.flex-column -->
|
</ul> <!-- ul.nav.flex-column -->
|
||||||
|
|
||||||
</div><!-- #nav-wrapper -->
|
<div class="sidebar-bottom mt-auto d-flex flex-wrap justify-content-center">
|
||||||
|
|
||||||
<div class="sidebar-bottom d-flex flex-wrap justify-content-around mt-4">
|
{% for entry in site.data.contact %}
|
||||||
|
{% capture url %}
|
||||||
|
{%- if entry.type == 'github' -%}
|
||||||
|
https://github.com/{{ site.github.username }}
|
||||||
|
{%- elsif entry.type == 'twitter' -%}
|
||||||
|
https://twitter.com/{{ site.twitter.username }}
|
||||||
|
{%- elsif entry.type == 'email' -%}
|
||||||
|
{% assign email = site.social.email | split: '@' %}
|
||||||
|
javascript:location.href = 'mailto:' + ['{{ email[0] }}','{{ email[1] }}'].join('@')
|
||||||
|
{%- elsif entry.type == 'rss' -%}
|
||||||
|
{{ "/feed.xml" | relative_url }}
|
||||||
|
{%- else -%}
|
||||||
|
{{ entry.url }}
|
||||||
|
{%- endif -%}
|
||||||
|
{% endcapture %}
|
||||||
|
|
||||||
{% unless site.theme_mode %}
|
{% if url %}
|
||||||
<span id="mode-toggle-wrapper">
|
<a href="{{ url }}" aria-label="{{ entry.type }}"
|
||||||
{% include mode-toggle.html %}
|
{% unless site.theme_mode %}class="order-{{ forloop.index | plus: 2 }}"{% endunless %}
|
||||||
</span>
|
{% unless entry.noblank %}target="_blank" rel="noopener"{% endunless %}>
|
||||||
<span class="icon-border"></span>
|
<i class="{{ entry.icon }}"></i>
|
||||||
{% endunless %}
|
</a>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
{% for entry in site.data.contact %}
|
{% endfor %}
|
||||||
{% capture url %}
|
|
||||||
{%- if entry.type == 'github' -%}
|
|
||||||
https://github.com/{{ site.github.username }}
|
|
||||||
{%- elsif entry.type == 'twitter' -%}
|
|
||||||
https://twitter.com/{{ site.twitter.username }}
|
|
||||||
{%- elsif entry.type == 'email' -%}
|
|
||||||
{% assign email = site.social.email | split: '@' %}
|
|
||||||
javascript:location.href = 'mailto:' + ['{{ email[0] }}','{{ email[1] }}'].join('@')
|
|
||||||
{%- elsif entry.type == 'rss' -%}
|
|
||||||
{{ "/feed.xml" | relative_url }}
|
|
||||||
{%- else -%}
|
|
||||||
{{ entry.url }}
|
|
||||||
{%- endif -%}
|
|
||||||
{% endcapture %}
|
|
||||||
|
|
||||||
{% if url %}
|
{% unless site.theme_mode %}
|
||||||
<a href="{{ url }}" aria-label="{{ entry.type }}" {% unless entry.noblank %}target="_blank" rel="noopener"{% endunless %}>
|
{% if site.data.contact.size > 0 %}
|
||||||
<i class="{{ entry.icon }}"></i>
|
<span class="icon-border order-2"></span>
|
||||||
</a>
|
{% endif %}
|
||||||
{% endif %}
|
|
||||||
{% endfor %}
|
|
||||||
|
|
||||||
</div>
|
<span id="mode-toggle-wrapper" class="order-1">
|
||||||
|
{% include mode-toggle.html %}
|
||||||
|
</span>
|
||||||
|
{% endunless %}
|
||||||
|
|
||||||
|
</div> <!-- .sidebar-bottom -->
|
||||||
|
|
||||||
|
</div><!-- #sidebar -->
|
||||||
|
|
|
@ -21,9 +21,7 @@ layout: compress
|
||||||
|
|
||||||
<body data-spy="scroll" data-target="#toc">
|
<body data-spy="scroll" data-target="#toc">
|
||||||
|
|
||||||
<div id="sidebar" class="d-flex flex-column">
|
{% include sidebar.html %}
|
||||||
{% include sidebar.html %}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{% include topbar.html %}
|
{% include topbar.html %}
|
||||||
|
|
||||||
|
|
|
@ -73,44 +73,45 @@ $sidebar-display: "sidebar-display";
|
||||||
width: $sidebar-width-medium;
|
width: $sidebar-width-medium;
|
||||||
z-index: 99;
|
z-index: 99;
|
||||||
background: var(--sidebar-bg);
|
background: var(--sidebar-bg);
|
||||||
|
|
||||||
a {
|
a {
|
||||||
@include sidebar-links;
|
@include sidebar-links;
|
||||||
|
&:hover {
|
||||||
|
color: #fff;
|
||||||
|
@include no-text-decoration;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.site-title {
|
.site-title {
|
||||||
text-align: center;
|
|
||||||
a {
|
a {
|
||||||
font-weight: 900;
|
font-weight: 900;
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
letter-spacing: 0.5px;
|
letter-spacing: 0.5px;
|
||||||
&:hover {
|
|
||||||
color: #fff;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.site-subtitle {
|
.site-subtitle {
|
||||||
font-size: 95%;
|
font-size: 95%;
|
||||||
text-align: center;
|
|
||||||
color: #828282;
|
color: #828282;
|
||||||
line-height: 1.2rem;
|
line-height: 1.2rem;
|
||||||
word-spacing: 1px;
|
word-spacing: 1px;
|
||||||
margin: 0.5rem 1.5rem 2rem 1.5rem;
|
margin: 0.5rem 1.5rem 0.5rem 1.5rem;
|
||||||
|
min-height: 3rem; // avoid vertical shifting in multi-line words
|
||||||
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar-bottom {
|
|
||||||
.icon-border + a { // the icon behide mode-toggle
|
|
||||||
margin-left: 0.1rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.nav-link {
|
.nav-link {
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
font-size: 0.95rem;
|
font-size: 0.95rem;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
letter-spacing: 1px;
|
letter-spacing: 1px;
|
||||||
|
display: table-cell;
|
||||||
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-item {
|
.nav-item {
|
||||||
|
text-align: center;
|
||||||
|
display: table;
|
||||||
height: $tab-height;
|
height: $tab-height;
|
||||||
&:hover {
|
&:hover {
|
||||||
.nav-link {
|
.nav-link {
|
||||||
|
@ -123,27 +124,38 @@ $sidebar-display: "sidebar-display";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
height: $tab-height * $tab-count;
|
height: $tab-height * $tab-count;
|
||||||
display: -webkit-box;
|
margin-bottom: 2rem;
|
||||||
display: -ms-flexbox;
|
padding-left: 0;
|
||||||
|
|
||||||
> li:last-child {
|
> li {
|
||||||
> a {
|
width: 100%;
|
||||||
margin-right: -3px;
|
|
||||||
max-width: calc(100% - 3px);
|
&:last-child {
|
||||||
|
$cursor-width: 3px;
|
||||||
|
|
||||||
|
> a {
|
||||||
|
position: relative;
|
||||||
|
left: $cursor-width / 2;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
&::after { // the cursor
|
||||||
|
display: table;
|
||||||
|
visibility: hidden;
|
||||||
|
content: "";
|
||||||
|
position: relative;
|
||||||
|
right: 1px;
|
||||||
|
width: $cursor-width;
|
||||||
|
height: $tab-cursor-height;
|
||||||
|
border-radius: 1px;
|
||||||
|
background-color: var(--nav-cursor-color);
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
&::after { // the cursor
|
} // li
|
||||||
visibility: hidden;
|
|
||||||
content: "";
|
|
||||||
position: relative;
|
|
||||||
right: 1px;
|
|
||||||
width: 3px;
|
|
||||||
height: $tab-cursor-height;
|
|
||||||
background-color: var(--nav-cursor-color);
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin fix-cursor($top) {
|
@mixin fix-cursor($top) {
|
||||||
top: $top;
|
top: $top;
|
||||||
|
@ -174,9 +186,18 @@ $sidebar-display: "sidebar-display";
|
||||||
|
|
||||||
.sidebar-bottom {
|
.sidebar-bottom {
|
||||||
font-size: 1.2rem;
|
font-size: 1.2rem;
|
||||||
margin: 2rem 2.5rem 1.6rem;
|
margin-bottom: 2.1rem;
|
||||||
|
|
||||||
|
@include ml-mr(auto);
|
||||||
|
@include pl-pr(1rem);
|
||||||
|
|
||||||
|
%icon {
|
||||||
|
width: 2.4rem;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
margin-bottom: 0.5rem; // icons may have multi lines
|
@extend %icon;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover, #mode-toggle-wrapper > i:hover {
|
a:hover, #mode-toggle-wrapper > i:hover {
|
||||||
|
@ -184,6 +205,8 @@ $sidebar-display: "sidebar-display";
|
||||||
}
|
}
|
||||||
|
|
||||||
#mode-toggle-wrapper {
|
#mode-toggle-wrapper {
|
||||||
|
@extend %icon;
|
||||||
|
|
||||||
i {
|
i {
|
||||||
@include sidebar-links;
|
@include sidebar-links;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
@ -192,16 +215,21 @@ $sidebar-display: "sidebar-display";
|
||||||
position: relative;
|
position: relative;
|
||||||
bottom: 1px;
|
bottom: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon-border {
|
.icon-border {
|
||||||
background: #525354;
|
background-color: #525354;
|
||||||
|
content: "";
|
||||||
width: 3px;
|
width: 3px;
|
||||||
height: 3px;
|
height: 3px;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
margin-top: 0.75rem;
|
position: relative;
|
||||||
|
top: 12px;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
} // .sidebar-bottom
|
||||||
|
|
||||||
} // #sidebar
|
} // #sidebar
|
||||||
|
|
||||||
@media (hover: hover) {
|
@media (hover: hover) {
|
||||||
|
@ -213,13 +241,9 @@ $sidebar-display: "sidebar-display";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#nav-wrapper {
|
.profile-wrapper {
|
||||||
width: 100%;
|
|
||||||
flex-grow: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
#profile-wrapper {
|
|
||||||
margin-top: 2rem;
|
margin-top: 2rem;
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#avatar {
|
#avatar {
|
||||||
|
@ -1045,7 +1069,6 @@ div.post-content .table-wrapper {
|
||||||
transition: transform 0.4s ease;
|
transition: transform 0.4s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
html, body {
|
html, body {
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
}
|
}
|
||||||
|
@ -1182,7 +1205,7 @@ div.post-content .table-wrapper {
|
||||||
margin-left: $sidebar-width-medium;
|
margin-left: $sidebar-width-medium;
|
||||||
}
|
}
|
||||||
|
|
||||||
#profile-wrapper {
|
.profile-wrapper {
|
||||||
margin-top: 3rem;
|
margin-top: 3rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1227,9 +1250,11 @@ div.post-content .table-wrapper {
|
||||||
#sidebar {
|
#sidebar {
|
||||||
width: $sidebar-width-small;
|
width: $sidebar-width-small;
|
||||||
.sidebar-bottom {
|
.sidebar-bottom {
|
||||||
@include ml-mr(1.5rem);
|
a, span {
|
||||||
|
width: 2rem;
|
||||||
|
}
|
||||||
.icon-border {
|
.icon-border {
|
||||||
@include ml-mr(.25rem);
|
left: -3px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1409,112 +1434,123 @@ div.post-content .table-wrapper {
|
||||||
margin-right: 3%;
|
margin-right: 3%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#profile-wrapper {
|
|
||||||
margin: 4rem 2rem 3rem 4rem;
|
|
||||||
-ms-flex-direction: column!important;
|
|
||||||
|
|
||||||
#avatar {
|
|
||||||
-webkit-box-pack: normal !important;
|
|
||||||
-ms-flex-pack: normal !important;
|
|
||||||
justify-content: normal !important;
|
|
||||||
> a {
|
|
||||||
width: 6.2rem;
|
|
||||||
height: 6.2rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.profile-text {
|
|
||||||
margin-left: 0.5rem;
|
|
||||||
/* .d-flex */
|
|
||||||
display: -webkit-box!important;
|
|
||||||
display: -ms-flexbox!important;
|
|
||||||
display: flex!important;
|
|
||||||
/* .flex-wrap */
|
|
||||||
-ms-flex-wrap: wrap!important;
|
|
||||||
flex-wrap: wrap!important;
|
|
||||||
/* .align-content-center */
|
|
||||||
-ms-flex-line-pack: center!important;
|
|
||||||
align-content: center!important;
|
|
||||||
> div {
|
|
||||||
text-align: left !important;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#sidebar {
|
#sidebar {
|
||||||
width: $sidebar-width-large;
|
width: $sidebar-width-large;
|
||||||
|
|
||||||
.site-title a {
|
.profile-wrapper {
|
||||||
font-size: 1.7rem;
|
margin-top: 4rem;
|
||||||
letter-spacing: 1px;
|
margin-bottom: 1rem;
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.site-subtitle {
|
&.text-center {
|
||||||
word-spacing: 0;
|
text-align: left !important;
|
||||||
margin: 0.3rem 0 0 0;
|
}
|
||||||
}
|
|
||||||
|
%profile-ml {
|
||||||
|
margin-left: 4.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
#avatar {
|
||||||
|
@extend %profile-ml;
|
||||||
|
|
||||||
|
> a {
|
||||||
|
width: 6.2rem;
|
||||||
|
height: 6.2rem;
|
||||||
|
&.mx-auto {
|
||||||
|
margin-left: 0 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.site-title {
|
||||||
|
@extend %profile-ml;
|
||||||
|
a {
|
||||||
|
font-size: 1.7rem;
|
||||||
|
letter-spacing: 1px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.site-subtitle {
|
||||||
|
@extend %profile-ml;
|
||||||
|
word-spacing: 0;
|
||||||
|
margin-top: 0.3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
} // .profile-wrapper (min-width: 1650px)
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
margin-left: 3%;
|
padding-left: 2.5rem;
|
||||||
> li > a {
|
|
||||||
padding-left: 2.5rem;
|
|
||||||
-webkit-box-pack: start!important;
|
|
||||||
-ms-flex-pack: start!important;
|
|
||||||
justify-content: flex-start!important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-link {
|
> li:last-child {
|
||||||
> span {
|
> a {
|
||||||
letter-spacing: 3px;
|
position: static;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
> i {
|
|
||||||
@include icon-round(1.65rem);
|
.nav-item {
|
||||||
line-height: 1rem;
|
text-align: left;
|
||||||
font-size: 0.6rem;
|
|
||||||
padding: 0.5em 0 0 0.1em;
|
.nav-link {
|
||||||
display: inline-block!important;
|
> span {
|
||||||
|
letter-spacing: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
> i {
|
||||||
|
@include icon-round(1.65rem);
|
||||||
|
|
||||||
|
line-height: 1.5rem;
|
||||||
|
font-size: 0.6rem;
|
||||||
|
padding-top: 1px;
|
||||||
|
padding-left: 1px;
|
||||||
|
position: relative;
|
||||||
|
bottom: 1px;
|
||||||
|
|
||||||
|
&.unloaded {
|
||||||
|
display: inline-block !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar-bottom {
|
.sidebar-bottom {
|
||||||
margin-left: 3.5rem;
|
padding-left: 3.5rem;
|
||||||
margin-right: 3rem;
|
width: 100%;
|
||||||
font-size: 1.3rem;
|
|
||||||
|
&.justify-content-center {
|
||||||
|
-webkit-box-pack: start!important;
|
||||||
|
-ms-flex-pack: start!important;
|
||||||
|
justify-content: flex-start!important;
|
||||||
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
border: 1px solid;
|
|
||||||
border-radius: 50%;
|
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
width: 2rem;
|
width: 3rem;
|
||||||
height: 2rem;
|
}
|
||||||
text-align: center;
|
|
||||||
i {
|
i {
|
||||||
text-align: center;
|
@include icon-round(2rem);
|
||||||
width: 1.25em;
|
padding-top: 0.44rem;
|
||||||
padding-top: 0.44rem;
|
margin-top: .7rem; // multi line space
|
||||||
}
|
bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#mode-toggle-wrapper {
|
#mode-toggle-wrapper {
|
||||||
font-size: 0.9rem;
|
width: 3rem;
|
||||||
|
|
||||||
i {
|
i {
|
||||||
@include icon-round(2rem);
|
top: 11px;
|
||||||
padding-top: 0.44rem;
|
|
||||||
bottom: 0;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon-border {
|
.icon-border {
|
||||||
@include ml-mr(.2rem);
|
top: 26px;
|
||||||
margin-top: 0.85rem;
|
|
||||||
+a {
|
|
||||||
margin-left: 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} // .sidebar-bottom
|
} // .sidebar-bottom
|
||||||
|
|
||||||
} // #sidebar
|
} // #sidebar
|
||||||
|
|
||||||
footer > div.d-flex {
|
footer > div.d-flex {
|
||||||
width: 87%;
|
width: 87%;
|
||||||
max-width: 1140px;
|
max-width: 1140px;
|
||||||
|
|
|
@ -65,7 +65,6 @@
|
||||||
color: $color;
|
color: $color;
|
||||||
transition: color 0.35s ease-in-out;
|
transition: color 0.35s ease-in-out;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
margin: 0 0.25rem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin icon-round($diameter) {
|
@mixin icon-round($diameter) {
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
/* --- ↓ width and height ---- */
|
/* --- ↓ width and height ---- */
|
||||||
|
|
||||||
$tab-height: 3.3rem;
|
$tab-height: 3.2rem;
|
||||||
$tab-cursor-height: 1.6rem;
|
$tab-cursor-height: 1.6rem;
|
||||||
|
|
||||||
$sidebar-width-small: 210px;
|
$sidebar-width-small: 210px;
|
||||||
|
|
Loading…
Reference in a new issue