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 {
|
a {
|
||||||
border: none;
|
border: none;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
import { Popup, PopupProps } from './Popup'
|
import { Popup, PopupProps } from './Popup'
|
||||||
import { signOut, useAuthStore } from '../../stores/auth'
|
import { signOut, useAuthStore } from '../../stores/auth'
|
||||||
|
import styles from './Popup.module.scss'
|
||||||
|
|
||||||
type ProfilePopupProps = Omit<PopupProps, 'children'>
|
type ProfilePopupProps = Omit<PopupProps, 'children'>
|
||||||
|
|
||||||
|
@ -27,7 +28,7 @@ export const ProfilePopup = (props: ProfilePopupProps) => {
|
||||||
<li>
|
<li>
|
||||||
<a href="#">Настройки</a>
|
<a href="#">Настройки</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li class={styles.topBorderItem}>
|
||||||
<a
|
<a
|
||||||
href="#"
|
href="#"
|
||||||
onClick={(event) => {
|
onClick={(event) => {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user