Merge branch 'develop' into fix/lock-app-on-background
This commit is contained in:
@@ -23,9 +23,7 @@ const ConfirmSignoutContainer = observer((props: Props) => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
const ConfirmSignoutModal = observer(({ application, appState }: Props) => {
|
const ConfirmSignoutModal = observer(({ application, appState }: Props) => {
|
||||||
const [deleteLocalBackups, setDeleteLocalBackups] = useState(
|
const [deleteLocalBackups, setDeleteLocalBackups] = useState(false);
|
||||||
application.hasAccount()
|
|
||||||
);
|
|
||||||
|
|
||||||
const cancelRef = useRef<HTMLButtonElement>();
|
const cancelRef = useRef<HTMLButtonElement>();
|
||||||
function close() {
|
function close() {
|
||||||
|
|||||||
@@ -126,7 +126,7 @@ const SessionsModal: FunctionComponent<{
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Dialog onDismiss={close} className="sessions-modal">
|
<Dialog onDismiss={close} className="sessions-modal h-screen py-8">
|
||||||
<div className="sk-modal-content">
|
<div className="sk-modal-content">
|
||||||
<div class="sn-component">
|
<div class="sn-component">
|
||||||
<div class="sk-panel">
|
<div class="sk-panel">
|
||||||
@@ -145,7 +145,7 @@ const SessionsModal: FunctionComponent<{
|
|||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="sk-panel-content">
|
<div class="sk-panel-content overflow-y-scroll">
|
||||||
{refreshing ? (
|
{refreshing ? (
|
||||||
<>
|
<>
|
||||||
<div class="sk-spinner small info"></div>
|
<div class="sk-spinner small info"></div>
|
||||||
|
|||||||
@@ -109,6 +109,11 @@
|
|||||||
padding-bottom: 0.375rem;
|
padding-bottom: 0.375rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.py-8 {
|
||||||
|
padding-top: 2rem;
|
||||||
|
padding-bottom: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
.outline-none {
|
.outline-none {
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
@@ -254,6 +259,10 @@
|
|||||||
height: 4.5rem;
|
height: 4.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.h-screen {
|
||||||
|
height: 100vh;
|
||||||
|
}
|
||||||
|
|
||||||
.max-h-120 {
|
.max-h-120 {
|
||||||
max-height: 30rem;
|
max-height: 30rem;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -72,6 +72,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
> .title {
|
> .title {
|
||||||
|
@extend .focus\:outline-none;
|
||||||
|
@extend .focus\:shadow-none;
|
||||||
width: 80%;
|
width: 80%;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
|
|||||||
Reference in New Issue
Block a user