2d00625729
**What** - v1 of executions domain **TODO in follow up PR** I think it might be a good idea for Carlos or Adrien to go over the design with Ludvig, and make sure we are displaying what is relevant to developers, and how things should be displayed. So this PR is just the initial implementation, and does not handle displaying things like compensation steps (not part of the current design), step input (not supported by the API but part of the design), etc. Closes CORE-1751, CORE-1755
48 lines
1004 B
CSS
48 lines
1004 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
@font-face {
|
|
font-family: "Inter";
|
|
font-weight: 400;
|
|
src: url("./assets/fonts/Inter-Regular.ttf") format("truetype");
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Inter";
|
|
font-weight: 500;
|
|
src: url("./assets/fonts/Inter-Medium.ttf") format("truetype");
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Roboto Mono";
|
|
font-weight: 400;
|
|
src: url("./assets/fonts/RobotoMono-Regular.ttf") format("truetype");
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Roboto Mono";
|
|
font-weight: 500;
|
|
src: url("./assets/fonts/RobotoMono-Medium.ttf") format("truetype");
|
|
}
|
|
|
|
:root {
|
|
@apply bg-ui-bg-subtle text-ui-fg-base;
|
|
}
|
|
}
|
|
|
|
@layer components {
|
|
.worfklow-grid {
|
|
background-image: radial-gradient(black 1px, transparent 0);
|
|
background-size: 40px 40px;
|
|
background: repeat;
|
|
}
|
|
}
|
|
|
|
.worfklow-grid {
|
|
background-image: radial-gradient(black 1px, transparent 0);
|
|
background-size: 40px 40px;
|
|
background: repeat;
|
|
}
|