mirror of
https://github.com/CyanoFresh/SmartHomePHP.git
synced 2026-03-07 18:36:51 +01:00
13 lines
219 B
PHP
13 lines
219 B
PHP
<?php
|
|
|
|
namespace app\assets\vendors;
|
|
|
|
use yii\web\AssetBundle;
|
|
|
|
class FontsAsset extends AssetBundle
|
|
{
|
|
public $css = [
|
|
'https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Product+Sans',
|
|
];
|
|
}
|