🎨 Toast button now align to end
This commit is contained in:
@@ -803,7 +803,7 @@ input[type="radio"]:checked + label + .tab {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.toasted-container .toasted {
|
.toasted-container .toasted {
|
||||||
justify-content: start !important;
|
justify-content: flex-start !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.toasted.info {
|
.toasted.info {
|
||||||
@@ -816,6 +816,10 @@ input[type="radio"]:checked + label + .tab {
|
|||||||
color: inherit !important;
|
color: inherit !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.toasted .action {
|
||||||
|
margin-left: auto !important;
|
||||||
|
}
|
||||||
|
|
||||||
.page-columns {
|
.page-columns {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
const DEFAULT_THEME = "dracula";
|
const DEFAULT_THEME = "twilight";
|
||||||
|
|
||||||
import ace from "ace-builds";
|
import ace from "ace-builds";
|
||||||
import "ace-builds/webpack-resolver";
|
import "ace-builds/webpack-resolver";
|
||||||
|
|||||||
@@ -682,10 +682,7 @@
|
|||||||
<input id="history-tab" type="radio" name="side" checked="checked" />
|
<input id="history-tab" type="radio" name="side" checked="checked" />
|
||||||
<label for="history-tab">{{ $t("history") }}</label>
|
<label for="history-tab">{{ $t("history") }}</label>
|
||||||
<div class="tab">
|
<div class="tab">
|
||||||
<history
|
<history @useHistory="handleUseHistory" ref="historyComponent" />
|
||||||
@useHistory="handleUseHistory"
|
|
||||||
ref="historyComponent"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
<input id="collection-tab" type="radio" name="side" />
|
<input id="collection-tab" type="radio" name="side" />
|
||||||
<label for="collection-tab">{{ $t("collections") }}</label>
|
<label for="collection-tab">{{ $t("collections") }}</label>
|
||||||
|
|||||||
Reference in New Issue
Block a user