fix: button bg color

This commit is contained in:
2024-04-10 16:18:32 +02:00
parent c07a16d245
commit 06eb4bc607
+7 -3
View File
@@ -9,7 +9,7 @@
{{ $t('realstock.title') }} {{ $t('realstock.title') }}
<a href="https://td2.info.pl/profile/?u=17708" target="_blank">Railtrains997</a> <a href="https://td2.info.pl/profile/?u=17708" target="_blank">Railtrains997</a>
</h1> </h1>
<button class="btn exit-btn" @click="store.isRealStockListCardOpen = false"> <button class="btn action-exit" @click="store.isRealStockListCardOpen = false">
<img src="/images/icon-exit.svg" alt="" /> <img src="/images/icon-exit.svg" alt="" />
</button> </button>
</div> </div>
@@ -47,7 +47,7 @@
</option> </option>
</datalist> </datalist>
<button class="btn" @click="resetStockFilters"> <button class="btn action-reset" @click="resetStockFilters">
{{ $t('realstock.action-reset') }} {{ $t('realstock.action-reset') }}
</button> </button>
</div> </div>
@@ -222,13 +222,17 @@ export default defineComponent({
<style lang="scss" scoped> <style lang="scss" scoped>
@import '../../styles/global.scss'; @import '../../styles/global.scss';
.exit-btn { .action-exit {
display: flex; display: flex;
background-color: #333; background-color: #333;
border-radius: 0.25em; border-radius: 0.25em;
padding: 0.5em; padding: 0.5em;
} }
.action-reset {
background-color: #333;
}
.card_content { .card_content {
display: grid; display: grid;
grid-template-rows: auto 1fr auto; grid-template-rows: auto 1fr auto;