This commit is contained in:
Andras Schmelczer 2024-12-20 17:34:39 +00:00
parent 25044a0fef
commit 5dd6a655cc
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
3 changed files with 58 additions and 19 deletions

View file

@ -1,4 +0,0 @@
.sync-settings-access-token textarea {
width: 100%;
height: 100px;
}

45
plugin/src/styles.scss Normal file
View file

@ -0,0 +1,45 @@
.sync-settings-access-token textarea {
width: 100%;
height: 100px;
}
.history-card * {
margin: 0;
padding: 0;
}
.history-card {
padding: var(--size-4-4) var(--size-4-6);
margin: var(--size-4-2);
background-color: var(--color-base-00);
border-radius: var(--radius-l);
&.success {
background-color: rgba(var(--color-green-rgb), 0.2);
}
&.error {
background-color: rgba(var(--color-red-rgb), 0.2);
}
.history-card-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: var(--size-4-4);
.history-card-title {
font: var(--font-monospace-theme);
}
.history-card-timestamp {
font-size: var(--font-ui-small);
color: var(--color-base-70);
}
}
.history-card-message {
font-size: var(--font-ui-medium);
color: var(--color-base-70);
}
}