views/mdc/assets/scss/components/button.scss in voom-presenters-0.1.13 vs views/mdc/assets/scss/components/button.scss in voom-presenters-0.2.0
- old
+ new
@@ -25,22 +25,34 @@
@include mdc-button-ink-color($mdc-theme-secondary);
@include mdc-states(secondary);
}
.v-button-position-left {
- float: left;
+ position: absolute;
+ left: 0;
}
.v-button-text-align-left {
padding-left: 0;
}
.v-button-position-right {
- float: right;
+ position: absolute;
+ right: 0
}
+.v-button-position-top {
+ position: absolute;
+ top: 0
+}
+.v-button-position-bottom {
+ position: absolute;
+ bottom: 0
+}
+
+
v-card-title-position-left {
position: absolute;
left: 0;
}
@@ -58,6 +70,9 @@
position: absolute;
bottom: 0;
}
+.v-button-full-width {
+ width: 100%;
+}