You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-10 09:22:25 +03:00
delint
This commit is contained in:
@@ -17,6 +17,10 @@ limitations under the License.
|
|||||||
.mx_MyGroups {
|
.mx_MyGroups {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
||||||
|
.mx_BetaCard {
|
||||||
|
margin: 0 40px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_MyGroups .mx_RoomHeader_simpleHeader {
|
.mx_MyGroups .mx_RoomHeader_simpleHeader {
|
||||||
@@ -35,12 +39,6 @@ limitations under the License.
|
|||||||
margin: 40px;
|
margin: 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_MyGroups {
|
|
||||||
.mx_BetaCard {
|
|
||||||
margin: 0 40px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.mx_MyGroups_headerCard {
|
.mx_MyGroups_headerCard {
|
||||||
flex: 1 0 50%;
|
flex: 1 0 50%;
|
||||||
margin-bottom: 30px;
|
margin-bottom: 30px;
|
||||||
|
|||||||
@@ -73,7 +73,6 @@ $pulse-color: $accent-color-alt;
|
|||||||
$dot-size: 12px;
|
$dot-size: 12px;
|
||||||
|
|
||||||
.mx_BetaDot {
|
.mx_BetaDot {
|
||||||
background: black;
|
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
margin: 10px;
|
margin: 10px;
|
||||||
height: $dot-size;
|
height: $dot-size;
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ interface IProps {
|
|||||||
featureId: string;
|
featureId: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const BetaPill = ({ onClick }) => {
|
export const BetaPill = ({ onClick }: { onClick?: () => void }) => {
|
||||||
return <span className="mx_BetaCard_betaPill" onClick={onClick}>
|
return <span className="mx_BetaCard_betaPill" onClick={onClick}>
|
||||||
{ _t("Beta") }
|
{ _t("Beta") }
|
||||||
</span>;
|
</span>;
|
||||||
|
|||||||
Reference in New Issue
Block a user