Change the button style to small, change position.

This commit is contained in:
elweyn 2023-07-26 13:43:51 +02:00
parent 3e1ed4f1db
commit 790ce71122

View File

@ -2,7 +2,7 @@
<div class="add-chat-room-by-user-search"> <div class="add-chat-room-by-user-search">
<ds-flex class="headline"> <ds-flex class="headline">
<h2 class="title">{{ $t('chat.addRoomHeadline') }}</h2> <h2 class="title">{{ $t('chat.addRoomHeadline') }}</h2>
<base-button class="close-button" icon="close" circle @click="closeUserSearch" /> <base-button class="close-button" icon="close" circle size="small" @click="closeUserSearch" />
</ds-flex> </ds-flex>
<ds-space margin-bottom="small" /> <ds-space margin-bottom="small" />
<ds-space> <ds-space>
@ -62,6 +62,6 @@ export default {
justify-content: space-between; justify-content: space-between;
} }
.ds-flex.headline .close-button { .ds-flex.headline .close-button {
margin-top: -6px; margin-top: -2px;
} }
</style> </style>