mirror of
https://github.com/PeWu/topola-viewer.git
synced 2026-07-18 01:31:47 +00:00
Replaced at="large with greaterThanOrEqual="large"
Based on warnings in the console
This commit is contained in:
@@ -538,7 +538,7 @@ class AppComponent extends React.Component<
|
|||||||
colors={this.state.config.color}
|
colors={this.state.config.color}
|
||||||
/>
|
/>
|
||||||
{this.state.showSidePanel ? (
|
{this.state.showSidePanel ? (
|
||||||
<Media at="large" className="sidePanel">
|
<Media greaterThanOrEqual="large" className="sidePanel">
|
||||||
<Tab panes={sidePanelTabs} />
|
<Tab panes={sidePanelTabs} />
|
||||||
</Media>
|
</Media>
|
||||||
) : null}
|
) : null}
|
||||||
|
|||||||
@@ -429,7 +429,7 @@ function ChartComponent(props: ChartComponentProps) {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div id="svgContainer">
|
<div id="svgContainer">
|
||||||
<Media at="large" className="zoom">
|
<Media greaterThanOrEqual="large" className="zoom">
|
||||||
<button
|
<button
|
||||||
className="zoom-in"
|
className="zoom-in"
|
||||||
onClick={() => chartWrapper.current.zoom(ZOOM_FACTOR)}
|
onClick={() => chartWrapper.current.zoom(ZOOM_FACTOR)}
|
||||||
|
|||||||
@@ -128,7 +128,7 @@ export function Intro() {
|
|||||||
<div id="content">
|
<div id="content">
|
||||||
<div className="backgroundImage" />
|
<div className="backgroundImage" />
|
||||||
<Card className="intro">
|
<Card className="intro">
|
||||||
<Card.Content as={Media} at="large">
|
<Card.Content as={Media} greaterThanOrEqual="large">
|
||||||
<Card.Header>
|
<Card.Header>
|
||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
id="intro.title"
|
id="intro.title"
|
||||||
@@ -137,7 +137,7 @@ export function Intro() {
|
|||||||
</Card.Header>
|
</Card.Header>
|
||||||
</Card.Content>
|
</Card.Content>
|
||||||
<Card.Content>
|
<Card.Content>
|
||||||
<Grid as={Media} at="large">
|
<Grid as={Media} greaterThanOrEqual="large">
|
||||||
<Grid.Row>
|
<Grid.Row>
|
||||||
<Grid.Column width={5}>
|
<Grid.Column width={5}>
|
||||||
<Image src={logo} alt="Topola logo" />
|
<Image src={logo} alt="Topola logo" />
|
||||||
|
|||||||
@@ -347,7 +347,7 @@ export class TopBar extends React.Component<RouteComponentProps & Props> {
|
|||||||
<>
|
<>
|
||||||
<Menu
|
<Menu
|
||||||
as={Media}
|
as={Media}
|
||||||
at="large"
|
greaterThanOrEqual="large"
|
||||||
attached="top"
|
attached="top"
|
||||||
inverted
|
inverted
|
||||||
color="blue"
|
color="blue"
|
||||||
|
|||||||
Reference in New Issue
Block a user