Skip to content

Commit

Permalink
Make text more noticeable
Browse files Browse the repository at this point in the history
  • Loading branch information
rberrelleza committed Oct 19, 2022
1 parent c0b8381 commit cebd4b9
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ RUN --mount=type=cache,target=/root/.yarn YARN_CACHE_FOLDER=/root/.yarn yarn ins
COPY . .

ARG LD_CLIENT_ID
RUN echo $LD_CLIENT_ID
RUN --mount=type=cache,target=./node_modules/.cache/webpack LD_CLIENT_ID=$LD_CLIENT_ID yarn build

FROM nginx:alpine
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/Admin.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { withLDConsumer } from 'launchdarkly-react-client-sdk';
const adminLink = ({flags}) => {
return (
<div className='App__nav'>
{ flags.adminDashboard && <Link to="/admin/users">Admin</Link> }
{ flags.adminDashboard && <Link to="/admin/users">To the new Admin Panel</Link> }
</div>);
}

Expand Down
1 change: 1 addition & 0 deletions frontend/src/Users.css
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@

.Table__head .Table__row {
height: 60px;
background: #00D1CA;
background: #2a2332;
font-size: 16px;
font-weight: bold;
Expand Down

0 comments on commit cebd4b9

Please sign in to comment.