This request has no response data available
Darex1991 opened this issue · 0 comments
Darex1991 commented
Hi, I had a small problem with this plugin.
I'm using this in a layout:
<link rel="stylesheet" type="text/css" href="<?php echo base_url() ?>style.php" />
and in style.php
:
<?php
require 'vendor/autoload.php';
$autoprefixer = new Autoprefixer();
$css = 'a { transition: transform 1s, color: red }';
$prefixed = $autoprefixer->compile($css);
echo $prefixed;
What I'm doing wrong?
I want to use this plugin with scss but I had the same results... And I tried also this configuration:
<?php
require 'vendor/autoload.php';
use Leafo\ScssPhp\Compiler;
header('Content-Type: text/css');
$autoprefixer = new Autoprefixer();
$scss = new Compiler();
$scss->setImportPaths("styles/");
$scss->setFormatter("Leafo\ScssPhp\Formatter\Crunched");
$scssFile = $scss->compile('@import "style.scss"');
$prefixed = $autoprefixer->compile($scssFile);
echo $prefixed;