Skip to content

Commit abe03a1

Browse files
authored
Merge pull request #60 from umbraco/feature/algolia-uui-library
Algolia integration using UUI library
2 parents 0942ab0 + 3d30103 commit abe03a1

File tree

5 files changed

+460
-338
lines changed

5 files changed

+460
-338
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,38 @@
1-
.umb-content-grid {
2-
display:grid;
3-
grid-template-columns: repeat(3, 1fr);
4-
gap:10px;
1+
/* align child element in two columns: 1/3 and 2/3 */
2+
.alg-col-2 {
3+
display: grid;
4+
grid-template-columns: 25% 60%;
5+
gap: 20px;
56
}
7+
8+
/* align child element in three equal columns */
9+
.alg-col-3 {
10+
display: grid;
11+
grid-template-columns: 33% 33% 33%;
12+
gap: 10px;
13+
}
14+
15+
.alg-toast {
16+
top: 0;
17+
left: 0;
18+
right: 0;
19+
height: 100vh;
20+
padding: var(--uui-size-layout-4);
21+
}
22+
23+
.alg-dialog {
24+
display: none;
25+
left: 50%;
26+
top: 50%;
27+
position: absolute;
28+
transform: translate(-70%,-70%);
29+
z-index: 1;
30+
}
31+
32+
.alg-description {
33+
color: #515054;
34+
font-size: 12px;
35+
box-sizing: border-box;
36+
resize: none;
37+
width: 100%;
38+
}

0 commit comments

Comments
 (0)