mirror of
https://github.com/MikroWizard/mikrofront.git
synced 2026-05-17 01:01:30 +00:00
ui ux enhencment , user tasks improvment , snippets improvment , add sequnces for pro , add wireguard vpn managment for pro, add custom syslog for pro
This commit is contained in:
parent
539e8e95fe
commit
e95304af3e
22 changed files with 5070 additions and 731 deletions
53
src/app/views/vpn/vpn.component.scss
Normal file
53
src/app/views/vpn/vpn.component.scss
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
/* Scss styling for vpn component */
|
||||
::ng-deep pre {
|
||||
display: block !important;
|
||||
min-height: 60vh;
|
||||
}
|
||||
|
||||
.shadow-sm {
|
||||
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
|
||||
}
|
||||
|
||||
.border-0 {
|
||||
border: 0 !important;
|
||||
}
|
||||
|
||||
.bg-success {
|
||||
background: linear-gradient(135deg, #2eb85c 0%, #1d823e 100%) !important;
|
||||
}
|
||||
|
||||
.bg-danger {
|
||||
background: linear-gradient(135deg, #e55353 0%, #ba2828 100%) !important;
|
||||
}
|
||||
|
||||
.bg-primary {
|
||||
background: linear-gradient(135deg, #321fdb 0%, #1f1498 100%) !important;
|
||||
}
|
||||
|
||||
.bg-info {
|
||||
background: linear-gradient(135deg, #39f 0%, #0076e6 100%) !important;
|
||||
}
|
||||
|
||||
.opacity-75 {
|
||||
opacity: 0.75;
|
||||
}
|
||||
|
||||
.text-white {
|
||||
color: #fff !important;
|
||||
}
|
||||
|
||||
.h-100 {
|
||||
height: 100% !important;
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(-5px);
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue