We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25b4494 commit 60b715cCopy full SHA for 60b715c
src/renderer/components/snippets/SnippetsDescription.vue
@@ -58,15 +58,26 @@ watch(
58
padding: 0 var(--spacing-xs);
59
font-size: 12px;
60
color: var(--color-text);
61
- border-bottom: 1px solid var(--color-border);
+ position: relative;
62
:empty::before {
63
content: attr(placeholder);
64
position: absolute;
65
color: var(--color-text-3);
66
background-color: transparent;
67
}
68
+ &::after {
69
+ content: '';
70
+ position: absolute;
71
+ width: 100%;
72
+ height: 1px;
73
+ background-color: var(--color-border);
74
+ left: 0;
75
+ bottom: -1px;
76
+ }
77
&.no-border-bottom {
- border-bottom: none;
78
79
+ content: none;
80
81
82
.input {
83
width: 100%;
0 commit comments