-
Notifications
You must be signed in to change notification settings - Fork 4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docs: Comparison width error #433
Comments
Vertical dividers are broken due to a CSS spec change. SUI core has opened issues with the w3c and Chrome: Semantic-Org/Semantic-UI#4342 Though, this might be as easy as adding Introduction.js const Comparison = ({ jsx, html }) => (
<Segment className='code-example'>
<Grid columns='equal' centered textAlign='left'>
<Grid.Column mobile='16' tablet='16' computer='8' largeScreen='7'>
<Label size='tiny' attached='top left'>JSX</Label>
<Highlight className='language-xml'>
{jsx}
</Highlight>
</Grid.Column>
- <Grid.Column only='large screen' textAlign='center'>
+ <Grid.Column only='large screen' largeScreen={2} textAlign='center'>
<Divider vertical>
<Icon name='right arrow circle' />
</Divider>
</Grid.Column>
<Grid.Column mobile='16' tablet='16' computer='8' largeScreen='7'>
<Label size='tiny' attached='top right'>Rendered HTML</Label>
<Highlight className='language-html'>
{html}
</Highlight>
</Grid.Column>
</Grid>
</Segment>
) The other columns are set to |
I am a little confused on where you are seeing this issue. Here is the current doc site in Chrome: Also, the CSS you are comparing looks correct. It should be When I make the browser full width, I also see the Please confirm. |
Ah! Good call, Either way, would you like to open a PR? |
Made #438 ✌️ |
On FHD screen I'm getting following:
Classes looks correctly:
But width taken another:
Looks like issue with SUI or I am missing something 💭
The text was updated successfully, but these errors were encountered: