Skip to content

Commit

Permalink
feat(ad): remove rounded edges (#342)
Browse files Browse the repository at this point in the history
  • Loading branch information
wliederer authored Dec 13, 2024
1 parent dc17b3b commit 6c40c97
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
1 change: 0 additions & 1 deletion packages/core/src/Ads/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ const useStyles = createUseStyles((theme: DefaultTheme) => ({
justifyContent: "space-around",
alignItems: "center",
textAlign: "center",
borderRadius: "4px",
backgroundSize: `contain`,
backgroundRepeat: `no-repeat`,
backgroundColor: theme.colors.grey.light,
Expand Down
Binary file added playground/src/App/PICKERBETMGM.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 11 additions & 4 deletions playground/src/App/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ put some strong selectors in 'makeMeUgly.css' and uncomment its import below */
import React, { useState, useEffect } from "react";
import { BrowserRouter as Router, Link } from "react-router-dom";
import "./index.css";
// import "./makeMeUgly.css";
import "./makeMeUgly.css";
import betmgm from "./PICKERBETMGM.jpeg";
import { Form, Formik, Field } from "formik";
import * as Yup from "yup";
import {
Expand Down Expand Up @@ -140,7 +141,7 @@ const App: React.FC = () => {
<div className="Playground">
<ThemeProvider theme={publisherTheme}>
<Router>
<div id="parent" style={{ width: "100%" }}>
{/* <div id="parent" style={{ width: "20%" }}>
<Hero
title="Capture your audience. Build a community."
description="Unleash your fans' opinions with interactive content."
Expand Down Expand Up @@ -202,8 +203,14 @@ const App: React.FC = () => {
/>
</Form>
)}
</Formik>
</div>
</Formik> */}
{/* </div> */}
<Ad
height={125}
width={600}
name={"HelloWorld Ad Default"}
backgroundImage={betmgm}
/>
</Router>
</ThemeProvider>
</div>
Expand Down

0 comments on commit 6c40c97

Please sign in to comment.