Skip to content

Commit 2f27f66

Browse files
updated core files
1 parent d4576f5 commit 2f27f66

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

src/Components/Alert/Alert.scss

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*****************************************************
22
PUNICA CSS > COMPONENTS : ALERT **********************/
3-
@import "mixins";
43
//
54
// if alert is enable
65
//
@@ -24,7 +23,9 @@ PUNICA CSS > COMPONENTS : ALERT **********************/
2423
//
2524
@if($components-alert-styles) {
2625
@each $style-name, $bg-color in $alert-styles {
27-
@include set-style($bg-color, $main-invert-color, $style-name);
26+
@include set-style($bg-color, $main-invert-color, $style-name) {
27+
border-color: darken($bg-color, 5%);
28+
};
2829
}
2930
}
3031
//

src/Components/Badge/Badge.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*****************************************************
22
PUNICA CSS > COMPONENTS : BADGE **********************/
3-
@import "mixins";
43
//
54
// if badge is enable
65
//

src/Components/Billboard/Billboard.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*****************************************************
22
PUNICA CSS > COMPONENTS : BILLBOARD ******************/
3-
@import "mixins";
43
//
54
// if billboard is enable
65
//

src/Components/Process/Process.scss

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,11 @@ PUNICA CSS > COMPONENTS : PROCESS ********************/
9797
&.#{$process-vertical} {
9898
@include process-vertical();
9999
}
100-
@include breakpoints($breakpoints-medium, 'max-width') {
101-
@include process-vertical();
102-
}
100+
}
101+
102+
// vertical style is setted "true" for mobile devices
103+
@include breakpoints($breakpoints-medium, 'max-width') {
104+
@include process-vertical();
103105
}
104106
}
105107
}

src/Elements/Typography/Typography.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ h6.bordered,
3333
.h4.bordered,
3434
.h5.bordered,
3535
.h6.bordered {
36-
border-bottom: $main-border-width $main-border-style $main-border-color;
36+
border-width: 0 0 $main-border-width 0 !important;
3737
padding-bottom: 10px;
3838
margin-bottom: 20px;
3939
}

0 commit comments

Comments
 (0)