@shakthillc/components
Version:
React generic components for shakthi products
45 lines (42 loc) • 783 B
CSS
@import url("https://rsms.me/inter/inter.css");
*{
box-sizing: border-box;
margin:0px;
padding: 0px;
}
.font-inter {
font-family: Inter;
font-size: 12px;
font-stretch: normal;
font-style: normal;
line-height: 18px;
letter-spacing: normal;
text-align: center;
color: rgba(0, 0, 0, 0.8);
}
.container {
composes: font-inter;
height: auto;
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
word-wrap:break-word;
background: lightgreen;
border-radius: 4px;
display: inline-flex;
margin: 3px;
}
.avatar{
height: 24px;
width: 24px;
display: inline-block;
padding-left: 8px;
}
.close{
height: 18px;
width: 18px;
padding-right: 8px;
}
.text{
padding: 0 0 0 8px;
}