Popup minor style fix
This commit is contained in:
parent
f78f007392
commit
7462e00cc3
|
@ -36,6 +36,11 @@
|
|||
}
|
||||
}
|
||||
|
||||
.topBorderItem {
|
||||
border-top: 2px solid;
|
||||
padding-top: 1em;
|
||||
}
|
||||
|
||||
a {
|
||||
border: none;
|
||||
white-space: nowrap;
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
import { Popup, PopupProps } from './Popup'
|
||||
import { signOut, useAuthStore } from '../../stores/auth'
|
||||
import styles from './Popup.module.scss'
|
||||
|
||||
type ProfilePopupProps = Omit<PopupProps, 'children'>
|
||||
|
||||
|
@ -27,7 +28,7 @@ export const ProfilePopup = (props: ProfilePopupProps) => {
|
|||
<li>
|
||||
<a href="#">Настройки</a>
|
||||
</li>
|
||||
<li>
|
||||
<li class={styles.topBorderItem}>
|
||||
<a
|
||||
href="#"
|
||||
onClick={(event) => {
|
||||
|
|
Loading…
Reference in New Issue
Block a user