userAvatarBox.less 473 Bytes
@charset "UTF-8";

.user-avatar-box {
	display: inline-block;
	background-color: transparent;
	width: 100%;
	height: auto;
	.box {
		position: relative;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		width: auto;
		height: 100%;
		.avatar-box {
			width: 100px;
			height: 100px;
			.avatar-img {
				display: block;
				width: 100px;
				height: 100px;
			}
		}
		.nickname {
			margin-left: 20px;
			color: #333333;
			font-size: 28px;
		}
	}
}