monlouis-sur-loire: patch cell corner position (#37641)

This commit is contained in:
Thomas Jund 2019-11-22 12:25:34 +01:00
parent f04c30dbb7
commit 842d5ece8f
2 changed files with 6 additions and 3 deletions

View File

@ -184,7 +184,7 @@ div#page {
margin-bottom: 30px;
}
.cell.wcsformsofcategorycell > div {
border: 2px solid $primary-color;
border: $custom-categorycell-border;
}
.cell.wcsformsofcategorycell > div > h2 {
font-size: 1.3em;
@ -200,8 +200,8 @@ div#page {
height: 0;
border-top: 24px solid white;
border-right: 24px solid black;
top: -1px;
left: -1px;
top: #{extract-width($custom-categorycell-border) * -1};
left: #{extract-width($custom-categorycell-border) * -1};
z-index: 1;
}
.cell.wcsformsofcategorycell > div > h2:after {

View File

@ -32,5 +32,8 @@ $sidebar-width: 240px;
$grid-gutter: 0px;
$widget-border: 2px solid #b4b4b4;
// custom vars
$custom-categorycell-border: 2px solid $primary-color;
@import '../includes/font-khand';
@import '../includes/font-archivo-narrow';