This commit is contained in:
armansansd 2021-08-31 11:13:32 +02:00
parent 3476a5fc7e
commit f06c9d3a91
3 changed files with 9 additions and 3 deletions

View File

@ -1395,7 +1395,6 @@ iframe {
.header_top_middle_container .views-element-container > div:first-child > div:first-child > div:first-child { .header_top_middle_container .views-element-container > div:first-child > div:first-child > div:first-child {
grid-column-start: 2; } grid-column-start: 2; }
.header_top_middle_container .views-row { .header_top_middle_container .views-row {
text-align: center;
display: inline-block; display: inline-block;
width: auto; } width: auto; }
.header_top_middle_container .views-row .views-field-title > span { .header_top_middle_container .views-row .views-field-title > span {
@ -1407,6 +1406,9 @@ iframe {
font-weight: 600; } font-weight: 600; }
.header_top_middle_container .views-row .views-field-title > span a { .header_top_middle_container .views-row .views-field-title > span a {
text-decoration: none; } text-decoration: none; }
@media screen and (max-width: 76.375em) {
.header_top_middle_container .views-row .views-field-title > span {
font-size: 0.45rem; } }
.close-block, .open-block { .close-block, .open-block {
cursor: pointer; } cursor: pointer; }

File diff suppressed because one or more lines are too long

View File

@ -179,7 +179,7 @@
} }
.views-row{ .views-row{
text-align: center; // text-align: center;
display: inline-block; display: inline-block;
width: auto; width: auto;
// a, span{ // a, span{
@ -195,6 +195,10 @@
a{ a{
text-decoration: none; text-decoration: none;
} }
@include breakpoint(1222px down) {
font-size: $font-small;
}
} }