Child theme styles order
Hi, I have created child theme
My current functions.php files looks like this
<?php
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
wp_enqueue_style( 'style-name', get_template_directory_uri() . '/styles/urban.css');
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
}
the problem is that Style files are sorted wrong way, and have different priorities. Sometimes foundation.min.css file has higher priority.
Could you help me with that? what should be the $deps (array) (optional) Array or any other way to sort all css files in child theme?
Or please tell me other way of creating child theme for hirebee.