chowa
Version:
UI component library based on React
39 lines (33 loc) • 760 B
CSS
/**
* @license chowa v1.1.3
*
* Copyright (c) Chowa Techonlogies Co.,Ltd.(http://www.chowa.cn).
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
.cw-avatar {
overflow: hidden;
width: 32px;
height: 32px;
display: inline-flex;
align-items: center;
justify-content: center;
vertical-align: top;
font-size: 16px;
margin: 0;
padding: 0;
box-sizing: border-box; }
.cw-avatar-dark {
background-color: #001529;
color: #cdc7c7; }
.cw-avatar-light {
background-color: #f8f8f8;
color: #7774e7; }
.cw-avatar-primary {
background-color: #7774e7;
color: #fff; }
.cw-avatar-circle {
border-radius: 50%; }
.cw-avatar-rect {
border-radius: 3px; }