Skip to content
Snippets Groups Projects

Card Component

Files

+ 19
0
 
.card {
 
display: flex;
 
background-color: #f8f9fa;
 
flex-direction: row;
 
justify-content: center;
 
width: 200px;
 
position: relative;
 
height: 8vh;
 
border: none;
 
padding: 10px 10px;
 
margin: 20px;
 
}
 
 
.card{ &:hover{
 
border: 1px solid grey;
Please register or sign in to reply
 
box-shadow: 1px 1px 6px -3px grey;
 
cursor: pointer;
 
}
 
}
Loading