Skip to content

Instantly share code, notes, and snippets.

@elyosemite
Created July 18, 2019 19:57
Show Gist options
  • Select an option

  • Save elyosemite/15d61dd799601983562ab6b94248cbac to your computer and use it in GitHub Desktop.

Select an option

Save elyosemite/15d61dd799601983562ab6b94248cbac to your computer and use it in GitHub Desktop.
.modal {
padding: 20px;
text-align: center;
background-color: #9999;
}
.content {
display: inline-grid;
justify-content: space-between;
border: 1px solid white;
grid-template-columns: repeat(auto-fit, minmax(0, max-content));
margin: 0 auto;
max-width: 1200px;
width: 100%;
}
.message {
text-align: left;
}
.group {
display: flex;
flex-direction: row;
grid-template-columns: repeat(auto-fit, minmax(50px, max-content));
column-gap: 10px;
row-gap: 10px;
justify-content: center;
align-content: center;
margin-right: 10px;
}
.alignLinks {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
width: 100%;
padding-left: 5px;
}
.link {
margin-left: 10px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment