Skip to content

Commit 0859ffd

Browse files
committed
feat: remove confusing border
1 parent e42b23b commit 0859ffd

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/pages/practice/Lab.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ import styled from '@emotion/styled/macro'
99
import { Terminal } from 'components/Terminal'
1010
import { useState } from 'react'
1111
import { contentWidth } from 'components/common'
12+
import { Div } from 'components/Div'
1213

13-
const ScrollCard = styled(Card)`
14+
const ScrollCard = styled(Div)`
1415
padding: 10px;
1516
width: ${contentWidth}px;
1617
`

src/pages/practice/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React, { useEffect } from 'react'
22
import { useApolloData } from 'hooks/common'
33
import { useTranslation } from 'react-i18next'
44
import { usePracticesQuery } from 'generated/graphql'
5-
import { Card, Divider, H1, Menu } from '@blueprintjs/core'
5+
import { Divider, H1, Menu } from '@blueprintjs/core'
66
import { Route, Switch, useHistory } from 'react-router-dom'
77
import { labLink } from 'components/Link'
88
import styled from '@emotion/styled/macro'
@@ -16,7 +16,7 @@ const Container = styled.div`
1616
display: flex;
1717
`
1818

19-
const WelcomeContainer = styled(Card)`
19+
const WelcomeContainer = styled(Div)`
2020
display: flex;
2121
vertical-align: middle;
2222
align-items: center;

0 commit comments

Comments
 (0)