Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/resources/scripts/components/elements/dialog/style.module.css
10260 views
1
.container {
2
@apply flex min-h-full items-center justify-center p-4 text-center;
3
}
4
5
.panel {
6
@apply relative bg-gray-600 rounded max-w-xl w-full mx-auto shadow-lg text-left;
7
@apply ring-4 ring-gray-800 ring-opacity-80;
8
}
9
10
.title {
11
@apply font-header text-xl font-medium mb-2 text-gray-50 pr-4;
12
}
13
14
.close_icon {
15
@apply w-5 h-5 group-hover:rotate-90 transition-transform duration-100;
16
}
17
18
.dialog_icon {
19
@apply flex items-center justify-center w-10 h-10 rounded-full mr-4;
20
21
&.danger {
22
@apply bg-red-500 text-red-50;
23
}
24
25
&.warning {
26
@apply bg-yellow-600 text-yellow-50;
27
}
28
29
&.success {
30
@apply bg-green-600 text-green-50;
31
}
32
33
&.info {
34
@apply bg-primary-500 text-primary-50;
35
}
36
}
37
38