nitro-react/src/components/groups/GroupView.scss

55 lines
1.3 KiB
SCSS
Raw Normal View History

2021-09-03 23:44:58 +02:00
.nitro-groups {
.tab-image {
width: 122px;
height: 68px;
display: flex;
align-items: center;
justify-content: center;
div {
background-image: url('../../assets/images/groups/creator_images.png');
background-repeat: no-repeat;
}
&.tab-1 {
div {
background-position: 0px 0px;
width: 99px;
height: 50px;
}
}
&.tab-2 {
div {
background-position: -99px 0px;
width: 98px;
height: 62px;
}
}
&.tab-3 {
div {
background-position: 0px -50px;
width: 96px;
height: 45px;
}
}
&.tab-4, &.tab-5 {
div {
background-position: 0px -95px;
width: 114px;
height: 61px;
}
}
}
}
2021-09-01 06:02:34 +02:00
@import './views/creator/GroupCreatorView';
2021-08-30 19:54:24 +02:00
@import './views/information/GroupInformationView';
2021-08-31 00:53:13 +02:00
@import './views/information-standalone/GroupInformationStandaloneView';
2021-09-03 23:44:58 +02:00
@import './views/manager/GroupManagerView';
2021-09-04 09:05:50 +02:00
@import './views/members/GroupMembersView';
2021-08-31 00:53:13 +02:00
@import './views/room-information/GroupRoomInformationView';
2021-09-03 07:09:48 +02:00
@import './views/shared-tabs/GroupSharedTabs';