Some improvement to round corners

This commit is contained in:
antil0pa 2018-06-05 14:30:43 +02:00
parent a6e806186d
commit 8764f00b9e
1 changed files with 16 additions and 3 deletions

View File

@ -145,9 +145,22 @@ body {
box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
}
.section-title-wrapper, .section-content-wrapper, .section-content-tools-wrapper {
.section-title-wrapper {
border-radius: $radius;
}
.section-subtitle-wrapper {
border-radius: $radius;
}
.section-content-wrapper, .section-content-tools-wrapper {
border-radius: $radius;
width: 100%;
}
.panel .section-content-tools-wrapper {
border-radius: 0 0 $radius $radius;
}
.panel .section-subtitle-wrapper {
border-radius: $radius $radius 0 0;
}
.generic-content-wrapper {
border: none;
@ -330,10 +343,10 @@ img.smiley {
.widget .connect-text { display:none; }
/* Connections */
.section-content-tools-wrapper {
.directory-item .section-content-tools-wrapper {
border-radius: 0 0 $radius $radius;
}
.section-subtitle-wrapper {
.directory-item .section-subtitle-wrapper {
border-radius: $radius $radius 0 0;
}