-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.component.scss
More file actions
61 lines (51 loc) · 994 Bytes
/
app.component.scss
File metadata and controls
61 lines (51 loc) · 994 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/* Copyright The Linux Foundation and each contributor to LFX. */
/* SPDX-License-Identifier: MIT */
::ng-deep {
.p-card {
.p-card-title {
@apply font-display;
}
}
.p-avatar {
@apply flex;
}
.p-table {
.p-datatable-tbody {
tr {
td {
@apply text-sm;
}
}
}
}
.p-toggleswitch {
@apply flex;
.p-toggleswitch-handle {
@apply rounded-full;
}
}
.p-select-overlay,
.p-multiselect-overlay {
.p-select-list-container,
.p-multiselect-list-container {
.p-select-option,
.p-multiselect-option {
@apply text-sm;
}
}
}
.p-tooltip {
.p-tooltip-text {
@apply text-sm;
}
}
.p-inplace-display {
@apply w-full;
&:hover {
@apply bg-transparent;
}
}
.pill {
@apply inline-flex items-center gap-2 px-4 py-2 text-sm font-medium rounded-full transition-colors text-gray-600 border border-gray-200 hover:bg-gray-50;
}
}