asuwatts/customrenovation is a Laravel package for a custom sub-subtheme for webspark 2.
It currently has 0 GitHub stars and 87 downloads on Packagist.
Install it with composer require asuwatts/customrenovation.
Discover more Laravel packages by asuwatts
or browse all Laravel packages to compare alternatives.
Last updated
This is a custom sub-subtheme for Webspark 2, based on the Renovation subtheme of the Radix theme. I have imported the Sass variables from Renovation to make it easier for us to do Sass front-end development.
composer install asuwatts/customrenovation:dev-main), you will not be able to customize it for your site.
composer remove asuwatts/customrenovation../../../webspark-theme-renovation to be ../../../composer/webspark-theme-renovation in the "customrenovation/src/sass/customrenovation.style.scss" file (which is where you should make any Sass/css edits).In order to make this subtheme work with Browsersync for local front-end development, you will need to make a few changes.
const proxy = '<sitename>.ddev.site'; (without the < > symbols). Then save the file. Please note the lack of http:// or https:// protocols. Including the protocol will prevent browsersync from working properly.version: "3.6"
services:
web:
expose:
- 3000
environment:
- HTTP_EXPOSE=${DDEV_ROUTER_HTTP_PORT}:80,${DDEV_MAILHOG_PORT}:8025,3001:3000
- HTTPS_EXPOSE=${DDEV_ROUTER_HTTPS_PORT}:80,${DDEV_MAILHOG_HTTPS_PORT}:8025,3000:3000
$settings['reverse_proxy'] = TRUE;
$settings['reverse_proxy_addresses'] = ['127.0.0.1', 'REMOTE_ADDR'];
ddev restart.ddev sshnpm install from the within the subtheme folder.npm run watch, also from the subtheme folder.<sitename> with the short name of your site).a {
color: $blue;
}
Once you save the file, a second or two later, the color of the maroon links in your browser should change to blue. If this happens, you have set things up successfully. Congratulations!