Denys Konovalov
13dde42eb0
- [x] Update auf Static CMS v2.0 - [x] aktualisierte Shortcodes (schließt #225) - [x] aktualisierte Previews (schließt #181) - Ordnerunterstützung - [x] vervollständigte Seiten - [x] Aufräumarbeiten Reviewed-on: https://git.cantorgymnasium.de/gcg/gcg-website/pulls/226
13 lines
402 B
JavaScript
13 lines
402 B
JavaScript
const Card = (child, opts = { vertical: false }) =>
|
|
h(
|
|
"span",
|
|
{
|
|
className:
|
|
"relative flex border border-slate-400 focus-within:border-blue-800 dark:focus-within:border-blue-100 focus-within:bg-slate-100 dark:focus-within:bg-slate-800 hover:bg-slate-100 dark:hover:bg-slate-800 pb-3 cursor-text group/active" +
|
|
(opts.vertical ? " flex-col" : ""),
|
|
},
|
|
child
|
|
);
|
|
|
|
export default Card;
|