pull/21833/head
Michael Telatynski 2021-04-27 17:19:34 +01:00
parent 46d35411b4
commit 4f02dc9050
3 changed files with 5 additions and 8 deletions

View File

@ -17,6 +17,10 @@ limitations under the License.
.mx_MyGroups {
display: flex;
flex-direction: column;
.mx_BetaCard {
margin: 0 40px;
}
}
.mx_MyGroups .mx_RoomHeader_simpleHeader {
@ -35,12 +39,6 @@ limitations under the License.
margin: 40px;
}
.mx_MyGroups {
.mx_BetaCard {
margin: 0 40px;
}
}
.mx_MyGroups_headerCard {
flex: 1 0 50%;
margin-bottom: 30px;

View File

@ -73,7 +73,6 @@ $pulse-color: $accent-color-alt;
$dot-size: 12px;
.mx_BetaDot {
background: black;
border-radius: 50%;
margin: 10px;
height: $dot-size;

View File

@ -26,7 +26,7 @@ interface IProps {
featureId: string;
}
export const BetaPill = ({ onClick }) => {
export const BetaPill = ({ onClick }: { onClick?: () => void }) => {
return <span className="mx_BetaCard_betaPill" onClick={onClick}>
{ _t("Beta") }
</span>;