mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-09 20:15:07 +00:00
Merge remote-tracking branch 'origin/demo' into starter
This commit is contained in:
commit
82244fd40e
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fuse/starter",
|
||||
"version": "13.6.0",
|
||||
"version": "13.6.1",
|
||||
"description": "Fuse - Angular Admin Template and Starter Project",
|
||||
"author": "https://themeforest.net/user/srcn",
|
||||
"license": "https://themeforest.net/licenses/standard",
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
import { Version } from '@fuse/version/version';
|
||||
|
||||
export const FUSE_VERSION = new Version('13.6.0').full;
|
||||
export const FUSE_VERSION = new Version('13.6.1').full;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<div class="fixed lg:sticky top-0 bottom-0 lg:left-full w-full sm:w-96 lg:w-16 lg:h-screen">
|
||||
<div class="fixed lg:sticky top-0 bottom-0 lg:left-full w-full sm:w-96 lg:w-16 lg:h-screen lg:shadow">
|
||||
<div
|
||||
class="flex flex-col w-full sm:w-96 h-full lg:shadow transform transition-transform duration-400 ease-drawer bg-card"
|
||||
class="flex flex-col w-full sm:w-96 h-full transform transition-transform duration-400 ease-drawer bg-card"
|
||||
[ngClass]="{'-translate-x-full sm:-translate-x-96 lg:-translate-x-80 shadow': opened, 'translate-x-0': !opened}">
|
||||
|
||||
<!-- Header -->
|
||||
|
|
|
@ -1,5 +1,25 @@
|
|||
quick-chat {
|
||||
z-index: 399;
|
||||
|
||||
> div {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
&.quick-chat-opened {
|
||||
|
||||
> div {
|
||||
overflow: visible;
|
||||
}
|
||||
}
|
||||
|
||||
:not(&.quick-chat-opened) {
|
||||
|
||||
> div {
|
||||
overflow: visible;
|
||||
animation: addOverflowHidden 1ms linear 400ms;
|
||||
animation-fill-mode: forwards;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* Adjustments depending on the selected layout */
|
||||
|
@ -24,3 +44,15 @@ quick-chat {
|
|||
opacity: 1;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
@keyframes addOverflowHidden {
|
||||
0% {
|
||||
overflow: visible
|
||||
}
|
||||
99% {
|
||||
overflow: visible;
|
||||
}
|
||||
100% {
|
||||
overflow: hidden;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user