All files / ship-components-tag-input/src Tag.css

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40                                                                               
/**
 *  <Tag />
 */
.container {
    height: 32px;
    color: rgba(0,0,0,0.87);
    background-color: #eee;
    display: flex;
    align-items: center;
    border-radius: 32px;
    margin: 3px;
}
 
.title {
    font-size: 13px;
    font-weight: 400;
    margin-left: 12px;
}
 
.clear-btn {
    height: 18px;
    width: 18px;
    margin: 0 4px;
    position: relative;
    padding: 0;
    border: none;
    background: none;
}
 
.cancel-icon {
    position: absolute;
    top: 0;
    left: 0;
}
 
.clear-btn .cancel-icon {
    color: #aaa;
    font-size: 18px;
}