chore(docs): update header link (#5910)

This commit is contained in:
Kate 2021-12-03 13:21:42 +03:00 committed by GitHub
parent a8bb387e80
commit 106b06da06
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 92 additions and 4 deletions

View file

@ -25,10 +25,50 @@
margin: 0 auto;
}
.btn {
font-family: nb-theme(font-main), sans-serif;
border-radius: 3px;
border: none;
background-color: #ffffff!important;
color: nb-theme(color-active-fg) !important;
padding: 1rem;
margin-right: 6% !important;
box-shadow: nb-theme(shadow-btn);
cursor: pointer;
text-transform: uppercase;
&:hover {
box-shadow: nb-theme(shadow-hover-btn);
}
&:active {
box-shadow: nb-theme(shadow-active-btn);
}
&.btn-download {
margin-left: 1em;
}
}
@include media-breakpoint-down(is) {
ngx-material-features {
max-width: 100%;
}
}
@include media-breakpoint-down(lg) {
.btn {
font-size: 0.7rem;
padding-bottom: 1rem;
padding-top: 1rem;
margin: 0!important;
}
}
@include media-breakpoint-down(md) {
.btn {
display: none;
}
}
}