Skip to content

Commit 50ad691

Browse files
committed
Update design properties
- Page wide gutter size - Container: Border radius, Card, Display type - Button: Style - Layout grid: Cards style, Background color, Column gap, Row gap, Border radius
1 parent 6bcf9fb commit 50ad691

File tree

3 files changed

+484
-69
lines changed

3 files changed

+484
-69
lines changed

themesource/atlas_core/web/core/base/mixins/_buttons.scss

+16
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,22 @@
3838
background-color: $background;
3939
}
4040
}
41+
&.btn-style-icon {
42+
@if $color != var(--btn-default-color) {
43+
color: $border;
44+
background: color-mix(in srgb, white, $border 15%);
45+
}
46+
47+
&:hover,
48+
&:focus,
49+
&:active,
50+
&.active,
51+
.open > &.dropdown-toggle {
52+
color: $color;
53+
border-color: $border;
54+
background-color: $border;
55+
}
56+
}
4157
// Button bordered
4258
&.btn-bordered {
4359
background-color: transparent;

themesource/atlas_core/web/core/helpers/_button.scss

+7
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,13 @@
121121
border: none;
122122
}
123123

124+
.btn-style-icon {
125+
font-size: x-large;
126+
border-radius: 100%;
127+
border: none;
128+
padding: 6px 12px;
129+
}
130+
124131
.btn-block {
125132
display: block;
126133
width: 100%;

0 commit comments

Comments
 (0)