podo-ui 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/scss/button/class.scss +9 -0
package/package.json
CHANGED
package/scss/button/class.scss
CHANGED
|
@@ -13,6 +13,7 @@ button {
|
|
|
13
13
|
background-color: color('default');
|
|
14
14
|
border: 1px solid color('default');
|
|
15
15
|
outline: none;
|
|
16
|
+
justify-content: center;
|
|
16
17
|
&:hover {
|
|
17
18
|
background-color: color('default-hover');
|
|
18
19
|
}
|
|
@@ -122,6 +123,14 @@ button {
|
|
|
122
123
|
outline: none;
|
|
123
124
|
cursor: not-allowed;
|
|
124
125
|
}
|
|
126
|
+
|
|
127
|
+
&.text-left {
|
|
128
|
+
justify-content: flex-start;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
&.text-right {
|
|
132
|
+
justify-content: flex-end;
|
|
133
|
+
}
|
|
125
134
|
}
|
|
126
135
|
@each $type in (primary, default-deep, info, link, success, warning, danger) {
|
|
127
136
|
button:not(:disabled).#{$type} {
|