
* Add marketplace * Update messages * Extract styles * Update test env * Update config and rename uri * Update template * Trigger CI * Possible fix * Update deploy yml * Add marketplace to staging * Fix responsiveness * Trigger CI * Fix navigation tests (#2081) * fix navigate through shop * wait for progress bar not to exist * simplify code * add wait * Fix navigate through shop (#2076) * fix navigate through shop * wait for progress bar not to exist * simplify code * Refine App about section (#2056) * Trigger CI * Trigger CI * Trigger CI * Trigger CI * Fix app activation/deactivation * Hide configuration url and policy if theres none * Remove about and support links * Remove unused code * Update stories and tests * Update messages * Fix privacy policy * Fix activation and "open app" * Update tests Co-authored-by: Karolina Rakoczy <rakoczy.karolina@gmail.com>
15 lines
227 B
TypeScript
15 lines
227 B
TypeScript
import { makeStyles } from "@saleor/macaw-ui";
|
|
|
|
const useStyles = makeStyles(
|
|
() => ({
|
|
iframe: {
|
|
height: "100vh",
|
|
position: "sticky"
|
|
}
|
|
}),
|
|
{
|
|
name: "marketplaceStyles"
|
|
}
|
|
);
|
|
|
|
export { useStyles };
|