Import theme
This commit is contained in:
parent
51769fa6be
commit
c59ffbfeee
127 changed files with 13611 additions and 1 deletions
47
assets/scss/partials/components/_footer.scss
Normal file
47
assets/scss/partials/components/_footer.scss
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
@use 'modules/config' as conf;
|
||||
|
||||
.footer {
|
||||
$font-size-footer: 1.4rem;
|
||||
|
||||
text-align: center;
|
||||
margin: 0 auto;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
padding-bottom: 20px;
|
||||
flex: 0;
|
||||
position: relative;
|
||||
|
||||
&__list {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
&__item {
|
||||
font-size: $font-size-footer;
|
||||
|
||||
&:not(:first-of-type)::before {
|
||||
content: '\00B7';
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
a {
|
||||
font-size: $font-size-footer;
|
||||
}
|
||||
}
|
||||
|
||||
&__sidebar {
|
||||
display: none;
|
||||
|
||||
@include conf.desktop {
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
|
||||
&__base {
|
||||
@include conf.desktop {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue