access only to superadmin
access only to superadmin, admin and user will be see screen according to permission. added logo to dashboardmazdak/UX-2365
parent
92ebdf3490
commit
57555718d2
@ -1 +1,3 @@
|
||||
<div class="dashboard-bg">
|
||||
<p>dashboard works!</p>
|
||||
</div>
|
||||
|
||||
@ -0,0 +1,14 @@
|
||||
.dashboard-bg {
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
z-index: 1;
|
||||
}
|
||||
.dashboard-bg::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
background: url('/assets/images/logo.png') center / contain no-repeat;
|
||||
background-size: 350px;
|
||||
opacity: 0.5; /* less transparent */
|
||||
z-index: -1;
|
||||
}
|
||||
Loading…
Reference in New Issue