Add logo support
parent
64224fa830
commit
ee79baa7d2
|
|
@ -82,6 +82,7 @@ class Room extends React.Component
|
||||||
<div data-component='Room'>
|
<div data-component='Room'>
|
||||||
<FullScreenView advancedMode={room.advancedMode} />
|
<FullScreenView advancedMode={room.advancedMode} />
|
||||||
<div className='room-wrapper'>
|
<div className='room-wrapper'>
|
||||||
|
<div data-component='Logo' />
|
||||||
<Notifications />
|
<Notifications />
|
||||||
|
|
||||||
<ToolAreaButton />
|
<ToolAreaButton />
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,19 @@
|
||||||
|
[data-component='Logo'] {
|
||||||
|
position: absolute;
|
||||||
|
height: 4%;
|
||||||
|
width: 8%;
|
||||||
|
top: 1%;
|
||||||
|
left: 1%;
|
||||||
|
z-index: 20;
|
||||||
|
background-position: left;
|
||||||
|
background-size: 100%;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
+desktop() {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
+mobile() {
|
||||||
|
}
|
||||||
|
background-image: url('/resources/images/logo.svg');
|
||||||
|
background-size: contain;
|
||||||
|
}
|
||||||
|
|
@ -19,15 +19,15 @@
|
||||||
background-color: rgba(#fff, 0.2);
|
background-color: rgba(#fff, 0.2);
|
||||||
|
|
||||||
+desktop() {
|
+desktop() {
|
||||||
top: 20px;
|
bottom: 1%;
|
||||||
left: 20px;
|
left: 1%;
|
||||||
width: 124px;
|
width: 10%;
|
||||||
}
|
}
|
||||||
|
|
||||||
+mobile() {
|
+mobile() {
|
||||||
top: 10px;
|
bottom: 1%;
|
||||||
left: 10px;
|
left: 1%;
|
||||||
width: 110px;
|
width: 10%;
|
||||||
}
|
}
|
||||||
|
|
||||||
> .icon {
|
> .icon {
|
||||||
|
|
@ -152,14 +152,14 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
+desktop() {
|
+desktop() {
|
||||||
top: 20px;
|
top: 6%;
|
||||||
left: 20px;
|
left:1%;
|
||||||
border: 1px solid rgba(#fff, 0.15);
|
border: 1px solid rgba(#fff, 0.15);
|
||||||
}
|
}
|
||||||
|
|
||||||
+mobile() {
|
+mobile() {
|
||||||
top: 10px;
|
top: 6%;
|
||||||
left: 10px;
|
left: 1%;
|
||||||
border: 1px solid rgba(#fff, 0.25);
|
border: 1px solid rgba(#fff, 0.25);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -42,6 +42,7 @@ body {
|
||||||
|
|
||||||
// Components
|
// Components
|
||||||
@import './components/Room';
|
@import './components/Room';
|
||||||
|
@import './components/Logo';
|
||||||
@import './components/Sidebar';
|
@import './components/Sidebar';
|
||||||
@import './components/Me';
|
@import './components/Me';
|
||||||
@import './components/Peers';
|
@import './components/Peers';
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue