React emotion - CSS class execution in emotion

0 votes
384 views
added Jul 23, 2021 in React by lcjr First Warrant Officer (11,790 points)
const listPrice = css`
  h4 {
    background: ${accentColor};
    color: #ffffff;
    border-radius: 5px;
    width: 147px;
    padding: 6px 13px;
  }
`;

<div css={listPrice}>
    <h4>{accounting.formatMoney(price, 'RM ', 0)}</h4>
</div>

 

2 Responses

0 votes
responded Feb 16, 2022 by lcjr First Warrant Officer (11,790 points)
import { css, jsx } from '@emotion/react';

<div
  css={css`
    width: 300px;
    padding: 16px;
    border: 1px solid #000;
  `}
>

 

0 votes
responded Jan 29 by lcjr First Warrant Officer (11,790 points)
import React from 'react';
import { css } from '@emotion/react';

const ColTest = () => {
  const containerStyles = css`
    display: flex;
    flex-direction: row; /* Change to row */
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
  `;

  const buttonStyles = css`
    width: 20%;
  `;

  const inputStyles = css`
    width: 80%;
  `;

  return (
    <div css={containerStyles}>
      <button css={buttonStyles}>New Topic</button>
      <input
        type="text"
        css={inputStyles}
        placeholder="Enter your topic..."
      />
    </div>
  );
};

export default ColTest;
lazacode.org - Malaysia's programming knowledge sharing platform, where everyone can share their finding as reference to others.
...