diff --git a/src/renderer/components/distraction-settings/distraction-settings.css b/src/renderer/components/distraction-settings/distraction-settings.css
new file mode 100644
index 000000000..d6cefc071
--- /dev/null
+++ b/src/renderer/components/distraction-settings/distraction-settings.css
@@ -0,0 +1,5 @@
+@media only screen and (max-width: 800px) {
+ br.hide-on-mobile {
+ display: none;
+ }
+}
diff --git a/src/renderer/components/distraction-settings/distraction-settings.vue b/src/renderer/components/distraction-settings/distraction-settings.vue
index b80075729..2603f3022 100644
--- a/src/renderer/components/distraction-settings/distraction-settings.vue
+++ b/src/renderer/components/distraction-settings/distraction-settings.vue
@@ -104,7 +104,7 @@
/>
-
+
+
diff --git a/src/renderer/components/ft-input-tags/ft-input-tags.css b/src/renderer/components/ft-input-tags/ft-input-tags.css
index bcce01090..d5878a42a 100644
--- a/src/renderer/components/ft-input-tags/ft-input-tags.css
+++ b/src/renderer/components/ft-input-tags/ft-input-tags.css
@@ -48,3 +48,8 @@
margin-top: 10px;
}
+@media only screen and (max-width: 576px) {
+ .ft-input-tags-component {
+ width: 100%;
+ }
+}
diff --git a/src/renderer/components/ft-input/ft-input.css b/src/renderer/components/ft-input/ft-input.css
index b503317de..c9b1df41e 100644
--- a/src/renderer/components/ft-input/ft-input.css
+++ b/src/renderer/components/ft-input/ft-input.css
@@ -114,11 +114,15 @@
color: #EEEEEE;
}
+.inputWrapper {
+ position: relative;
+}
+
.inputAction {
position: absolute;
margin: 0 3px;
padding: 10px;
- top: 5px;
+ top: -8px;
right: 0;
border-radius: 100%;
color: var(--primary-text-color);
@@ -132,20 +136,11 @@
cursor: pointer;
}
-.inputAction.withLabel {
- /* If showLabel defined, re-centralize the input button*/
- top: 34px;
-}
-
.search ::-webkit-calendar-picker-indicator {
display: none;
}
-.search .inputAction {
- top: 12px;
-}
-
.forceTextColor .inputAction {
color: #EEEEEE;
}
diff --git a/src/renderer/components/ft-input/ft-input.vue b/src/renderer/components/ft-input/ft-input.vue
index d1408416c..5ced9eea7 100644
--- a/src/renderer/components/ft-input/ft-input.vue
+++ b/src/renderer/components/ft-input/ft-input.vue
@@ -38,32 +38,33 @@
@keydown.space.prevent="handleClearTextClick"
@keydown.enter.prevent="handleClearTextClick"
/>
- handleInput(e.target.value)"
- @focus="handleFocus"
- @blur="handleInputBlur"
- @keydown="handleKeyDown"
- >
-
-
+
+ handleInput(e.target.value)"
+ @focus="handleFocus"
+ @blur="handleInputBlur"
+ @keydown="handleKeyDown"
+ >
+
+