Skip to content
This repository was archived by the owner on Apr 29, 2024. It is now read-only.

Commit 669c879

Browse files
committed
x
1 parent 96f4c9d commit 669c879

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-5
lines changed

src/renderer/components/LandingPage.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@
5757
<br>
5858

5959
<div v-if="foundFiletypes.length > 0" style="opacity:0.3;">Filetypes Discovered</div>
60-
<div class="flex">
60+
<div style="width:230px;" class="flex">
6161
<div
6262
class="coolbtn margin-right"
63-
style=" max-width: 260px;"
63+
style="padding: 10px; max-width: 260px;margin-bottom:7px;"
6464
v-for="(i, index) of foundFiletypes"
6565
:key="index"
6666
:class="{'filtered': currentFilter === i}"

src/renderer/components/WindowsButtons.vue

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
<template>
4-
<div class="buttons">
4+
<div :class="{'dark-buttons': $store.getters.getThemeName === 'light'}" class="buttons">
55
<div @click="minimize" class="button minimize">
66
<svg name="TitleBarMinimize" width="12" height="12" viewBox="0 0 12 12">
77
<rect fill="#ffffff" width="10" height="1" x="1" y="6"></rect>
@@ -63,12 +63,24 @@ export default {
6363
cursor: pointer;
6464
z-index: 100px;
6565
}
66+
.dark-buttons .button {
67+
&:hover {
68+
background: rgb(192, 192, 192);
69+
}
70+
&.close:hover {
71+
background: #e41414dc;
72+
}
73+
74+
svg {
75+
filter: invert(100%);
76+
}
77+
}
6678
.button {
67-
padding: 2px 10px;
79+
padding: 4px 12px;
6880
cursor: pointer;
6981
/* width: 33%; */
7082
&:hover {
71-
background: #00000027;
83+
background: var(--boxLight);
7284
}
7385
&.close:hover {
7486
background: #e41414dc;

0 commit comments

Comments
 (0)