Portfolio/src/styles/SkillCard.css

25 lines
487 B
CSS

.skill-card {
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 0.5rem;
padding: 0.25rem 0.75rem;
font-size: 0.875rem;
width: fit-content;
white-space: nowrap;
flex-shrink: 0;
gap: 0.5rem;
background-color: #171717;
color: white;
border: solid rgba(100,100,100) 0.001rem;
height: 1.5rem;
margin: 0.5% 2%;
}
.skill-card img {
width: 1rem;
height: 1.125rem;
pointer-events: none;
}