textarea, input

This commit is contained in:
Max Leiter
2026-04-12 20:27:23 -07:00
parent 318ffa8ab9
commit c84d2fdfd2
2 changed files with 13 additions and 1 deletions

View File

@@ -75,7 +75,11 @@
<!-- Sessions -->
<SettingCard v-if="!store.state.serverConfiguration?.public" title="Sessions" role="group">
<h3>Current session</h3>
<Session v-if="currentSession" :session="currentSession" />
<Session
v-if="currentSession"
:session="currentSession"
v-bind:class="'current-session'"
/>
<template v-if="activeSessions.length > 0">
<h3>Active sessions</h3>

View File

@@ -191,10 +191,18 @@
/* Text inputs inside cards */
.setting-card .input {
background-color: #28333d;
color: var(--body-color);
border: 1px solid #28333d;
margin-bottom: 0;
margin-top: 8px;
}
.setting-card input::placeholder,
.setting-card textarea::placeholder {
color: var(--body-color-muted);
}
.setting-card textarea.input {
margin-top: 8px;
}