Update to reply functionality and profile creation along with everything else. #2

Closed
ciajaf wants to merge 4 commits from ciajaf/super_ball:master into master
Showing only changes of commit 792eb46ca2 - Show all commits

View File

@@ -142,7 +142,8 @@ button:active {
label { label {
display: block; display: block;
font-weight: bold; font-weight: bold;
margin-bottom: 3px; margin-bottom: 2px;
margin-top: 7px;
font-family: var(--font-family); font-family: var(--font-family);
color: var(--primary-color); color: var(--primary-color);
} }
@@ -744,11 +745,6 @@ small {
margin: 20px; margin: 20px;
} */ } */
label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
textarea { textarea {
width: 100%; width: 100%;
@@ -788,4 +784,20 @@ textarea {
.tab-content.active { .tab-content.active {
display: block; display: block;
} }
.fetched-event {
background: var(--secondary-color);
border: 1px solid var(--muted-color);
border-radius: 4px;
padding: 10px;
font-family: var(--font-family);
font-size: 16px;
white-space: pre-wrap;
word-wrap: break-word;
max-height: 400px;
overflow-y: auto;
margin: 10px 0;
color: var(--primary-color);
display: none;
}