Skip to content

Commit

Permalink
Merge pull request #8127 from JayPokale/issue8126
Browse files Browse the repository at this point in the history
Layout shift fixed on /downloads - Update index.js
  • Loading branch information
sm1990 committed Oct 30, 2023
2 parents 7a013e9 + 199fb14 commit 00d8004
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pages/downloads/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,15 +116,15 @@ export default function Downloads() {
</Row>

<Row className={`${styles.downloadsVSCode} ${styles.downloadContentRow}`}>
<Col xs={12} sm={12} md={12} lg={3}>
<Col xs={12} sm={12} md={12} lg={12} xl={12} xxl={3}>
<a id="packVsCode" href="vscode://wso2.ballerina/open-file?gist=74cea880fefcb463d26a0c46f38fce39&file=hello_world.bal"
className={styles.cVSCodeSample} data-download="downloads"
target="_blank" rel="noreferrer">
<div className={styles.cSize}>Open `hello_world.bal` on <p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Visual Studio Code</p></div>
</a>
</Col>

<Col xs={12} sm={12} md={12} lg={9}>
<Col xs={12} sm={12} md={12} lg={12} xl={12} xxl={9}>
<p>You will be prompted to install the Ballerina Visual Studio Code extension.</p>
<p>For more information, see the <a href="https://wso2.com/ballerina/vscode/" target="_blank" rel="noreferrer">Ballerina Visual Studio Code extension</a>.</p>
</Col>
Expand All @@ -145,4 +145,4 @@ export default function Downloads() {
</Layout>

);
}
}

0 comments on commit 00d8004

Please sign in to comment.