* feat: add patterned background to boards * feat: setup dashboard 2.0 * fix: prevent patterned background from overlaying buttons * feat: set max width for main card view * feat: adjust colour scheme for card view * feat: adjust dashboard border colour scheme and radius * fix: use correct colour for description placeholder * fix: use getLayout to persist layout state across pages * feat: reduce max width for settings and members pages * feat: add feedback button and modal * feat: adjust page max width * feat: extend mobile layout support * fix: hide pro badge when collapsed * feat: tweak nav styling for light mode * feat: tweak skeleton loaders for board list * feat: extend list max height * fix: hide side nav right border on desktop * chore: update hero images * chore: update hero images for docs * chore: update translations
26 lines
707 B
TypeScript
26 lines
707 B
TypeScript
const PatternedBackground = () => (
|
|
<div className="absolute inset-0 h-full w-full">
|
|
<svg className="h-full w-full">
|
|
<pattern
|
|
id="pattern"
|
|
x="10"
|
|
y="10"
|
|
width="14.423223834988539"
|
|
height="14.423223834988539"
|
|
patternUnits="userSpaceOnUse"
|
|
patternTransform="translate(-0.45072574484339184,-0.45072574484339184)"
|
|
>
|
|
<circle
|
|
cx="0.45072574484339184"
|
|
cy="0.45072574484339184"
|
|
r="0.45072574484339184"
|
|
fill="#3e3e3e"
|
|
></circle>
|
|
</pattern>
|
|
<rect x="0" y="0" width="100%" height="100%" fill="url(#pattern)"></rect>
|
|
</svg>
|
|
</div>
|
|
);
|
|
|
|
export default PatternedBackground;
|