Jake Vanderwerf
7 days ago 46d681c6b825d21b3f698d793c4e630c687d90ad
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
.feed-content-types {
    margin-bottom: 16px;
 
    .components-base-control__label {
        margin-bottom: 8px;
        font-weight: 500;
    }
 
    .components-checkbox-control {
        margin-bottom: 8px;
 
        &:last-child {
            margin-bottom: 0;
        }
 
        .components-checkbox-control__input-container {
            margin-right: 8px;
        }
    }
}
.feed-block {
    border: 1px solid #ddd;
    padding: 20px;
    background: white;
 
    .feed-block-preview {
        .filter-preview {
            display: flex;
            gap: 8px;
            margin: 16px 0;
            flex-wrap: wrap;
 
            .content-type-badge {
                background: #f0f0f0;
                padding: 4px 8px;
                border-radius: 4px;
                font-size: 12px;
            }
        }
 
        .feed-grid-placeholder {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 16px;
            margin-top: 20px;
 
            .grid-item-placeholder {
                background: #f0f0f0;
                aspect-ratio: 1;
                border-radius: 4px;
            }
        }
    }
}
 
.feed-content-types {
    margin-bottom: 16px;
 
    .components-base-control__label {
        margin-bottom: 8px;
        font-weight: 500;
    }
 
    .checkbox-list {
        border: 1px solid #ddd;
        border-radius: 4px;
        max-height: 200px;
        overflow-y: auto;
        padding: 8px;
        background: white;
 
        .components-checkbox-control {
            margin: 4px 0;
 
            &:first-child {
                margin-top: 0;
            }
 
            &:last-child {
                margin-bottom: 0;
            }
        }
    }
 
    .select-all-wrapper {
        margin-top: 8px;
        padding-top: 8px;
        border-top: 1px solid #ddd;
    }
 
    .components-checkbox-control__input-container {
        margin-right: 8px;
    }
}
.feed-block {
    border: 1px solid #ddd;
    padding: 20px;
    background: white;
 
    .feed-block-preview {
        .filter-preview {
            display: flex;
            gap: 8px;
            margin: 16px 0;
            flex-wrap: wrap;
 
            .content-type-badge {
                background: #f0f0f0;
                padding: 4px 8px;
                border-radius: 4px;
                font-size: 12px;
            }
        }
 
        .feed-grid-placeholder {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 16px;
            margin-top: 20px;
 
            .grid-item-placeholder {
                background: #f0f0f0;
                aspect-ratio: 1;
                border-radius: 4px;
            }
        }
    }
}