mirror of
https://github.com/Sped0n/bridget.git
synced 2026-04-14 10:09:31 -07:00
73 lines
1.1 KiB
SCSS
73 lines
1.1 KiB
SCSS
footer {
|
|
max-height: fit-content;
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 777;
|
|
background-color: #fff;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
font-size: 20px;
|
|
line-height: 1.5;
|
|
padding: 4px 9px;
|
|
float: none;
|
|
|
|
.footer_name {
|
|
}
|
|
|
|
.footer_categoryWrapper {
|
|
.footer_category {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.selected {
|
|
text-decoration: underline;
|
|
font-style: italic;
|
|
}
|
|
}
|
|
|
|
.footer_threshold {
|
|
button {
|
|
border: none;
|
|
background-color: transparent;
|
|
margin: 0;
|
|
font-size: 20px;
|
|
padding: 0 4px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.thid{
|
|
display: inline-block;
|
|
text-align: center;
|
|
width: 48px;
|
|
}
|
|
}
|
|
|
|
.footer_imageIndex {
|
|
margin: 0;
|
|
|
|
.ftid {
|
|
display: inline-block;
|
|
text-align: center;
|
|
width: 7px;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 768px) {
|
|
footer {
|
|
top: 0;
|
|
padding: 3px 8px;
|
|
font-size: 17px;
|
|
|
|
.footer_threshold {
|
|
display: none;
|
|
}
|
|
|
|
.footer_imageIndex {
|
|
display: none;
|
|
}
|
|
}
|
|
} |