This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Add smooth scrolling for on-page navigation. | |
*/ | |
(function() { | |
// Script options. | |
var options = { | |
menuSelector: '.site-navigation ul', | |
mobileBreakPoint : 900, | |
headerHeight: 0, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'); | |
var cleanCSS = require('gulp-clean-css'); | |
var minimist = require('minimist'); | |
var uglify = require('gulp-uglify'); | |
var pump = require('pump'); | |
var sass = require('gulp-sass'); | |
var imagemin = require('gulp-imagemin'); | |
var html5Lint = require('gulp-html5-lint'); | |
var csslint = require('gulp-csslint'); | |
var jshint = require('gulp-jshint'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const path = require("path"); | |
const MiniCssExtractPlugin = require("mini-css-extract-plugin"); | |
module.exports = { | |
context: __dirname, | |
entry: { | |
block_one: ["./block-one/index.js", "./block-one/styles.css"], | |
block_two: ["./block-two/index.js", "./block-two/styles.css"], | |
}, | |
output: { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Box, Paper, PaperProps, styled } from "@mui/material"; | |
import React, { FormEvent, ReactNode } from "react"; | |
import { StyledForm, FormBody } from "./Form.styles"; | |
export const StyledForm = styled(Paper)<PaperProps & { component: string }>( | |
({ theme }) => ({ | |
display: "flex", | |
flexDirection: "column", | |
gap: theme.spacing(2), | |
padding: theme.spacing(3), |
OlderNewer