File size: 267 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.example-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, 150px);
	grid-template-rows: repeat(auto-fill, 50px);
	text-align: center;
	.logo-container {
		min-height: 50px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

}