UX: Chat mobile menu styling update (#27598)

This commit is contained in:
chapoi 2024-07-04 18:02:30 +02:00 committed by GitHub
parent 32149e6fa1
commit 2db35149fd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 4 deletions

View File

@ -1,5 +1,5 @@
.fk-d-menu-modal {
.d-modal__body {
padding: 0;
padding: 0.5rem 0;
}
}

View File

@ -1,6 +1,6 @@
.chat-message-actions {
.selected-message-container {
padding: 0.5em 0 1em 0;
padding: 0.75rem 1rem;
}
.selected-message {
@ -101,10 +101,8 @@
margin: 0;
.chat-message-action-item {
border-bottom: 1px solid var(--primary-low);
width: 100%;
list-style: none;
padding: 0.25em 0;
display: flex;
&:active {
@ -117,10 +115,12 @@
.chat-message-action {
justify-content: flex-start;
gap: 0.25em;
background: none;
width: 100%;
border: 0;
color: var(--primary);
padding: 0.75rem 1em;
&:focus,
.d-icon {
@ -129,4 +129,11 @@
}
}
}
//temporary until this uses a proper component instead of the modal
.d-modal {
&__body {
padding: 0;
}
}
}