🎨 Toast button now align to end

This commit is contained in:
Liyas Thomas
2019-12-15 21:46:55 +05:30
parent 29c6109ea3
commit feb782270b
3 changed files with 7 additions and 6 deletions

View File

@@ -803,7 +803,7 @@ input[type="radio"]:checked + label + .tab {
}
.toasted-container .toasted {
justify-content: start !important;
justify-content: flex-start !important;
}
.toasted.info {
@@ -816,6 +816,10 @@ input[type="radio"]:checked + label + .tab {
color: inherit !important;
}
.toasted .action {
margin-left: auto !important;
}
.page-columns {
display: flex;
flex: 1;

View File

@@ -3,7 +3,7 @@
</template>
<script>
const DEFAULT_THEME = "dracula";
const DEFAULT_THEME = "twilight";
import ace from "ace-builds";
import "ace-builds/webpack-resolver";

View File

@@ -682,10 +682,7 @@
<input id="history-tab" type="radio" name="side" checked="checked" />
<label for="history-tab">{{ $t("history") }}</label>
<div class="tab">
<history
@useHistory="handleUseHistory"
ref="historyComponent"
/>
<history @useHistory="handleUseHistory" ref="historyComponent" />
</div>
<input id="collection-tab" type="radio" name="side" />
<label for="collection-tab">{{ $t("collections") }}</label>