mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-06 04:19:31 +00:00
20 lines
316 B
CSS
20 lines
316 B
CSS
.gridContainer {
|
|
display: grid;
|
|
place-content: center;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
grid-gap: 40px;
|
|
margin-left: 20px;
|
|
margin-right: 40px;
|
|
text-align: center;
|
|
}
|
|
|
|
|
|
.center {
|
|
margin: 20px auto;
|
|
max-width: 1000px;
|
|
}
|
|
|
|
.main {
|
|
margin-bottom: 100px;
|
|
}
|