Created
June 15, 2020 18:48
-
-
Save pjhoberman/72c9470fad119d3ffd40c9cefd591691 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#distributor-list .distributor { | |
margin: 10px; | |
border-radius: 10px; | |
width: 30%; | |
min-width: 250px; | |
} | |
.d-inline-block { | |
display: inline-block!important; | |
} | |
.card { | |
position: relative; | |
display: -ms-flexbox; | |
display: flex; | |
-ms-flex-direction: column; | |
flex-direction: column; | |
min-width: 0; | |
word-wrap: break-word; | |
background-color: #fff; | |
background-clip: border-box; | |
border: 1px solid rgba(0,0,0,.125); | |
border-radius: .25rem; | |
} | |
*, ::after, ::before { | |
box-sizing: border-box; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.justify-content-center { | |
-ms-flex-pack: center!important; | |
justify-content: center!important; | |
} | |
.flex-wrap { | |
-ms-flex-wrap: wrap!important; | |
flex-wrap: wrap!important; | |
} | |
.d-inline-flex { | |
display: -ms-inline-flexbox!important; | |
display: inline-flex!important; | |
} | |
*, ::after, ::before { | |
box-sizing: border-box; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment